php string replace

178

str_replace php variable -

$var1 = 'hello.world';
$var2 = str_replace(".", "-", $var1);
echo $var2; // hello-world

replace all php -

$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
// Fornece: Hll Wrld f PHP

Comments

Submit
0 Comments