php中的str_ireplace函数的用法:【str_ireplace(find,replace,string,count)】。str_ireplace函数用于替换字符串中的一些字符(不区分大小写)。
php str_ireplace函数用于字符串替换操作,不区分大小写,其语法是str_ireplace(find,replace,string,count)。参数find必需,规定要查找的值;replace必需,规定替换 find 中的值的值;string必需,规定被搜索的字符串。
(推荐教程:php视频教程)
php str_ireplace函数怎么用?
php str_ireplace()函数 语法
作用:字符串替换操作,不区分大小写。
语法:
str_ireplace(find,replace,string,count)
参数:
find 必需。规定要查找的值。
replace 必需。规定替换 find 中的值的值。
string 必需。规定被搜索的字符串。
count 可选。一个变量,对替换数进行计数。
说明:
替换字符串中的一些字符(不区分大小写)。该函数必须遵循下列规则:如果搜索的字符串是一个数组,那么它将返回一个数组。如果搜索的字符串是一个数组,那么它将对数组中的每个元素进行查找和替换。
如果同时需要对数组进行查找和替换,并且需要执行替换的元素少于查找到的元素的数量,那么多余元素将用空字符串进行替换。如果是对一个数组进行查找,但只对一个字符串进行替换,那么替代字符串将对所有查找到的值起作用。
php str_ireplace()函数使用示例1
<?php echo str_ireplace("WORLD","php.cn","Hello world!"); ?>
输出:
Hello php.cn!
php str_ireplace()函数使用示例2
<?php echo str_ireplace("hello","Hi","hello php.cn!"); ?>
输出:
Hi php.cn!
以上是php中的str_ireplace函数怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!