php replace string in string code example
Example 1: php str_replace
<?php
$result = str_replace("1", "2", "This is number 1");
?>
Example 2: php replace every occurrence of character in string
str_replace ($search, $replace, $subject);
Example 3: php str_replace
<?php
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
?>
Example 4: php str replace
<?php
$string = str_ireplace("FoX", "CAT", "the quick brown fox jumps over the lazy dog");
echo $string;
?>