本文列举了 PHP 字符串相关函数。
mixed str_replace( mixed $search, mixed $replace , mixed $subject [, int &$count]);
$count 如果被指定,它的值将被设置为替换发生的次数。
$count
上述函数区分大小写,str_ireplace() 不区分大小写。
str_ireplace()