replace of string in php code example
Example 1: php replace return character
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
Example 2: 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