PHP中有多種字符替換函數(shù)可以使用,常用的函數(shù)有str_replace()和preg_replace()。
$string = "Hello, world!";
$new_string = str_replace("Hello", "Hi", $string);
echo $new_string; // Output: Hi, world!
$string = "Hello, world!";
$new_string = preg_replace("/\bworld\b/", "universe", $string);
echo $new_string; // Output: Hello, universe!
以上是兩種常用的字符替換方法,根據(jù)實(shí)際需求選擇適合的方法進(jìn)行字符替換操作。