string replace all occurance in php code example
Example 1: php replace every occurrence of character in string
//replaces every occurence of $search with $replace in the string $subject
str_replace ($search, $replace, $subject);
Example 2: replace all occurrence char in string php
$string = str_replace('search','replace',$string);