Answers for "str_replace variable php number variable"

PHP
5

str_replace php variable

$var1 = 'hello.world';
$var2 = str_replace(".", "-", $var1);
echo $var2; // hello-world
Posted by: Guest on October-18-2020

Code answers related to "str_replace variable php number variable"

Browse Popular Code Answers by Language