str_ireplace()函数用于将字符替换为其他一些字符。
注意-该函数不区分大小写
str_ireplace(find,replace,str,count)
find-要搜索的值
replace-将值替换为find中的值
str-要搜索的字符串
count-更换数量
str_ireplace()函数返回具有替换值的字符串或数组。
以下是一个例子-
<?php $str = "I am Amit"; $res = str_ireplace("Amit", "David", $str); echo $res; ?>
以下是输出-
输出结果
I am David
让我们看另一个例子-
<?php $myArr = array("one","two","three"); print_r(str_ireplace("three","four",$myArr,$c)); echo "<br>" . "Number of Replacements = $c"; ?>
以下是输出-
输出结果
Array ( [0] => one [1] => two [2] => four ) Number of Replacements = 1