3 回答
错过了年华
TA贡献56条经验 获得超22个赞
str_replace()函数:对字符进行替换操作
声明:mixed str_replace(mixed $search, mixed $replace, mixed $subject [,int &$count])
$search表示查找的目标值,$replace参数表示$search的替换值,$subject参数表示需要被操作的字符串,
$count参数是用来统计$search参数被替换的次数,是一个可选参数,与其他参数不同的是,在完成str_replace()函数的调用后,该参数还可以在函数外部直接被调用。
例子:
$str1="i like play football, and he is also like play football";
$str2="basketball";
echo "替换前字符串为:".$str1."<br>";
$str=str_replace("football",$str2,$str1,$count);
echo "替换后字符串为:".$str."<br>";
echo "字符串中football被替换的次数为:".$count."<br>";
- 3 回答
- 0 关注
- 1382 浏览
添加回答
举报
0/150
提交
取消