php replace specific character code example
Example 1: php replace return character
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
Example 2: replace all occurrence char in string php
$string = str_replace('search','replace',$string);