str_replace()怎么用
时间: 2024-05-31 22:08:39 浏览: 90
JSP中的字符替换函数 str_replace() 实现!
str_replace() 是 PHP 中用于替换字符串的函数,它的语法是:
str_replace(search,replace,string,count)
其中,search 表示要替换的字符串,replace 表示替换成的字符串,string 表示要进行替换的原始字符串,count 表示替换的次数(可选参数,默认为全部替换)。
例如,要将字符串 "Hello World" 中的 "World" 替换为 "ChitGPT",可以使用以下代码:
$str = "Hello World";
$new_str = str_replace("World", "ChitGPT", $str);
echo $new_str;
输出结果为:"Hello ChitGPT"。
阅读全文