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
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短