PHP中的str_replace()函数用于在字符串中替换指定的子字符串。该函数的语法如下:
str_replace($search, $replace, $subject)
其中,$search是要查找的子字符串,$replace是要替换的子字符串,$subject是要在其中进行替换操作的原始字符串。
下面是一个例子:
$original_string = "Hello, world!";
$new_string = str_replace("world", "John", $original_string);
echo $new_string;
在上面的例子中,我们将原始字符串中的"world"替换为"John",输出结果为"Hello, John!"。