how to replace a character in a string in php? code example
Example 1: php replace return character
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
Example 2: php replace string
str_replace ($needle, $replacement, $haystack);