PHP str_ireplace() 函數(shù)
PHP str_ireplace() 函數(shù)
實(shí)例
把字符串 "Hello world!" 中的字符 "WORLD"(不區(qū)分大小寫)替換成 "Peter":
<?php
echo str_ireplace("WORLD","Peter","Hello world!");
?>
echo str_ireplace("WORLD","Peter","Hello world!");
?>
運(yùn)行實(shí)例 ?
定義和用法
str_ireplace() 函數(shù)替換字符串中的一些字符(不區(qū)分大小寫)。
該函數(shù)必須遵循下列規(guī)則:
- 如果搜索的字符串是一個(gè)數(shù)組,那么它將返回一個(gè)數(shù)組。
- 如果搜索的字符串是一個(gè)數(shù)組,那么它將對(duì)數(shù)組中的每個(gè)元素進(jìn)行查找和替換。
- 如果同時(shí)需要對(duì)某個(gè)數(shù)組進(jìn)行查找和替換,并且需要執(zhí)行替換的元素少于查找到的元素的數(shù)量,那么多余的元素將用空字符串進(jìn)行替換。
- 如果是對(duì)一個(gè)數(shù)組進(jìn)行查找,但只對(duì)一個(gè)字符串進(jìn)行替換,那么替代字符串將對(duì)所有查找到的值起作用。
注釋:該函數(shù)是不區(qū)分大小寫的。請(qǐng)使用 str_replace() 函數(shù)執(zhí)行區(qū)分大小寫的搜索。
注釋:該函數(shù)是二進(jìn)制安全的。
語(yǔ)法
str_ireplace(find,replace,string,count)
參數(shù) | 描述 |
---|---|
find | 必需。規(guī)定要查找的值。 |
replace | 必需。規(guī)定替換 find 中的值的值。 |
string | 必需。規(guī)定被搜索的字符串。 |
count | 可選。一個(gè)變量,對(duì)替換數(shù)進(jìn)行計(jì)數(shù)。 |
技術(shù)細(xì)節(jié)
返回值: | 返回帶有替換值的字符串或數(shù)組。 |
---|---|
PHP 版本: | 5+ |
更新日志: | 在 PHP 5.0 中,新增了 count 參數(shù)。 |
更多實(shí)例
實(shí)例 1
使用帶有數(shù)組和 count 變量的 str_ireplace() 函數(shù):
<?php
$arr = array("blue","red","green","yellow");
print_r(str_ireplace("RED","pink",$arr,$i)); // This function is case-insensitive
echo "Replacements: $i";
?>
$arr = array("blue","red","green","yellow");
print_r(str_ireplace("RED","pink",$arr,$i)); // This function is case-insensitive
echo "Replacements: $i";
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
使用帶有需要替換的元素少于查找到的元素的 str_ireplace() 函數(shù):
<?php
$find = array("HELLO","WORLD"); // This function is case-insensitive
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_ireplace($find,$replace,$arr));
?>
$find = array("HELLO","WORLD"); // This function is case-insensitive
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_ireplace($find,$replace,$arr));
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 類型比較
- PHP 超級(jí)全局變量
- PHP While 循環(huán)
- PHP date() 函數(shù)
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP Cookie
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP end() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Mail 函數(shù)