php replace characters code example
Example 1: php replace return character
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
Example 2: php replace
str_replace ($search, $replace, $subject);
Example 3: str_replace php
echo str_replace("worss","world","Hello worss in PHP!!");
Example 4: php str replace
<?php
$string = str_ireplace("FoX", "CAT", "the quick brown fox jumps over the lazy dog");
echo $string;
?>
Example 5: php replace string
str_replace ($needle, $replacement, $haystack);