SyntaxFix
Write A Post
Hire A Developer
Questions
$string = 'this is my world, not my world'; $find = 'world'; $replace = 'farm'; $result = preg_replace("/$find/",$replace,$string,1); echo $result;