PHP中的str_ireplace()函数
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
热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短