美文网首页
php str_ireplace函数怎么用

php str_ireplace函数怎么用

作者: zhangH_ed64 | 来源:发表于2019-05-28 15:23 被阅读0次

    php str_ireplace函数用于字符串替换操作,不区分大小写,其语法是str_ireplace(find,replace,string,count)。参数find必需,规定要查找的值;replace必需,规定替换 find 中的值的值;string必需,规定被搜索的字符串。

    php str_ireplace函数怎么用?

    php str_ireplace()函数 语法

    作用:字符串替换操作,不区分大小写。

    语法:


    str_ireplace(find,replace,string,count)


    参数:

    find 必需。规定要查找的值。

    replace 必需。规定替换 find 中的值的值。

    string 必需。规定被搜索的字符串。

    count 可选。一个变量,对替换数进行计数。

    说明:

    替换字符串中的一些字符(不区分大小写)。该函数必须遵循下列规则:如果搜索的字符串是一个数组,那么它将返回一个数组。如果搜索的字符串是一个数组,那么它将对数组中的每个元素进行查找和替换。

    如果同时需要对数组进行查找和替换,并且需要执行替换的元素少于查找到的元素的数量,那么多余元素将用空字符串进行替换。如果是对一个数组进行查找,但只对一个字符串进行替换,那么替代字符串将对所有查找到的值起作用。

    php str_ireplace()函数使用示例1


    <?php

    echostr_ireplace("WORLD","php.cn","Hello world!");

    ?>


    输出:


    Hello php.cn!


    php str_ireplace()函数使用示例2


    <?php

    echostr_ireplace("hello","Hi","hello php.cn!");

    ?>


    输出:


    Hi php.cn!


    以上就是php str_ireplace函数怎么用的详细内容

    相关文章

      网友评论

          本文标题:php str_ireplace函数怎么用

          本文链接:https://www.haomeiwen.com/subject/kgjdtctx.html