I would like to make a whole word replace using php Example : If I have
$text = "Hello hellol hello, Helloz";
ve ben kullanmak
$newtext = str_replace("Hello",'NEW',$text);
Yeni metin gibi görünmelidir
YENİ hello1 merhaba, Helloz
PHP döner
YENİ hello1 merhaba, newz
Teşekkürler.