str_replace() 函数用于将一个字符串替换为另一个字符串。
注意 - 该函数区分大小写。
str_replace(find, replace, str, count)
find - 要搜索的值
replace - 我们要替换 $find 的字符串
str - 要搜索的字符串
count - 替换次数
str_replace( ) 函数返回带有替换值的字符串或数组。
以下是示例 -
实时演示
<?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中文网其他相关文章!