Answers for "php replace word with variable"

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 exact word in php

$string = preg_replace('/\bthe\b/', '', $string);
Posted by: Guest on May-13-2021

Code answers related to "php replace word with variable"

Browse Popular Code Answers by Language