Answers for "replace substring with another string php"

PHP
4

str_replace php variable

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

string replace in php

str_replace in PHP
Posted by: Guest on June-04-2021

Code answers related to "replace substring with another string php"

Browse Popular Code Answers by Language