Home > Article > Backend Development > PHP中str_replace的指定替换次数不生效
<?php header("Content-Type: text/html; charset=utf-8");$str="hello world he,he,he,he,he,he";echo str_replace("he", "替换", $str,$count=1);?>
你理解错了第四个参数,它是计算一共替换了多少次,而不是限制替换的次数
str_replace("he", "替换", $str,$count);
$count是返回被替换的次数