Answers for "price replace . to , php"

PHP
34

php replace

str_replace ($search, $replace, $subject);
Posted by: Guest on June-17-2019
5

str_replace php variable

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

Browse Popular Code Answers by Language