Example 1: php str_replace
<?php
$result = str_replace("1", "2", "This is number 1");
?>
Example 2: php replace
str_replace ($search, $replace, $subject);
Example 3: str_replace php
echo str_replace("worss","world","Hello worss in PHP!!");
Example 4: replace all php
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
Example 5: 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