php replace word in string code example
Example 1: php str_replace
<?php
$result = str_replace("1", "2", "This is number 1");
?>
Example 2: php replace string within string
$new_string = str_replace( $take_out, $put_in, $string);
Example 3: str_replace php
echo str_replace("worss","world","Hello worss in PHP!!");
Example 4: Replace String in PHP
phpCopy<?php
$mystring = "This is my string.";
echo("This is the string before replacement: ");
echo($mystring);
echo("\n");
$mynewstring = str_replace(" my ", " ", $mystring);
echo("Now, this is the string after replacement: ");
echo($mynewstring);
?>