{site_name}

{site_name}

🌜 搜索

PHP函数str_ireplace()是用于在字符串中查找并替换子字符串的函数

php 𝄐 0
php strpos函数,phpstorm,phpstudy的MySQL打不开,phpstudy启动MySQL教程,phpstudy的MySQL无法启动,phpstudyApache启动不了
PHP函数str_ireplace()是用于在字符串中查找并替换子字符串的函数。与str_replace()函数不同,它是不区分大小写的。

函数原型为:

string str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )


参数说明:

- $search:要查找的子字符串或数组。
- $replace:用于替换查找到的子字符串或数组。
- $subject:被搜索的字符串或数组。
- $count(可选):指向一个变量的引用,用于存储替换的次数。

返回值:

该函数返回替换后的字符串或数组。如果发生错误,则返回NULL。

下面是一个简单的例子,将字符串中的"world"替换为"John":

php
$string = "Hello world!";
$new_string = str_ireplace("world", "John", $string);
echo $new_string; //输出:Hello John!


另外,该函数还可以接受数组作为$search和$replace参数,用于一次性替换多个子字符串。例如:

php
$find = array("hello", "world");
$replace = array("你好", "世界");
$string = "Hello world!";
$new_string = str_ireplace($find, $replace, $string);
echo $new_string; //输出:你好 世界!