str replace all in php code example
Example 1: php str_replace
<?php
$result = str_replace("1", "2", "This is number 1");
?>
Example 2: str_replace php
echo str_replace("worss","world","Hello worss in PHP!!");
Example 3: str_replace php variable
$var1 = 'hello_john';
$var2 = str_replace("_", "-", $var1);
echo $var2;
Example 4: string replace php
str_replace ( array|string $needle , array|string $needle_replacement , string|array $haystack , int &$output_count = null ) : string|array
str_replace ($needle, $needle_replacement, $haystack, $output_count);
echo str_replace("_", " ", "Hello_World_of_PHP");
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$vowels = ["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"];
echo str_replace($vowels, "", "Hello World of PHP", $count);
echo $count