str_replace() 関数は、ある文字列を別の文字列に置換するために使用されます。
注 - この関数では大文字と小文字が区別されます。
#構文str_replace(find, replace, str, count)
find - 検索する値
replace< strong> - $find を置換する文字列
str - 検索する文字列
count - 置換の数
<?php $str = "I am Amit"; $res = str_replace("Amit", "David", $str); echo $res; ?>
I am David
<?php $myArr = array("one","two","three"); print_r(str_replace("three","four",$myArr,$c)); echo "<br>" . "Number of Replacements = $c"; ?>
Array ( [0] => one [1] => two [2] => four ) <br> Number of Replacements = 1
以上がPHP の str_replace() 関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。