Answers for "php text replace funtion"

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

replace all occurrence char in string php

$string = str_replace('search','replace',$string);
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language