ホームページ >バックエンド開発 >PHPチュートリアル >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);?>
4 番目のパラメーターを誤解しています。置換回数を制限します。
str_replace("he", "replacement", $str,$count);
$count は置換回数を返します