remove substring in string php code example
Example 1: php remove text from string
<?php
//Replace the characters "world" in the string "Hello world!" with "Peter":
echo str_replace("world","Peter","Hello world!");
?>
Example 2: replace all occurrence char in string php
$string = str_replace('search','replace',$string);