remove character php code example

Example 1: str_replace php variable

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

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");
// Fornece: Hll Wrld f PHP

Tags:

Php Example