词条 | str_ireplace |
释义 | 定义和用法str_ireplace() 函数使用一个字符串替换字符串中的另一些字符。 语法str_ireplace(find,replace,string,count) 参数 描述 find 必需。规定要查找的值。 replace 必需。规定替换 find 中的值的值。 string 必需。规定被搜索的字符串。 count 可选。一个变量,对替换数进行计数。 提示和注释注释:该函数对大小写不敏感。请使用 str_replace() 执行对大小写敏感的搜索。 注释:该函数是二进制安全的。 例子 1<?php Hello John! 例子 2在本例中,我们将演示带有数组和 count 变量的 str_ireplace() 函数: <?php Array ( [0] => blue [1] => pink [2] => green [3] => yellow ) Replacements: 1 例子 3<?php Array ( [0] => B [1] => [2] => ! )PHP String 函数 |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。