简明现代魔法 -> PHP服务器脚本 -> PHP 字符串替换 str_replace() 函数
PHP 字符串替换 str_replace() 函数
2010-01-23
str_replace() 函数使用一个字符串替换字符串中的另一些字符。用法如下:
str_replace(find,replace,string,count)
参数
描述
find
必需。规定要查找的值。
replace
必需。规定替换 find 中的值的值。
string
必需。规定被搜索的字符串。
count
可选。一个变量,对替换数进行计数。
程序例子
echo str_replace("world","Gonn","Hello world!");
?>
运行结果:
Hello Gonn!
就是说,用 Gonn 来替换掉 "Hello world!" 中的 world。
程序例子
在本例中,我们将演示带有数组和 count 变量的 str_replace() 函数:
$arr = array("blue","red","green","yellow");
print_r(str_replace("red","pink",$arr,$i));
echo "Replacements: $i";
?>
运行结果:
Array
(
[0] => blue
[1] => pink
[2] => green
[3] => yellow
)
Replacements: 1
就是说,用 pink 替换掉数组中的 red。然后计算替换的次数。
程序例子
$find = array("Hello","world");
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_replace($find,$replace,$arr));
?>
运行结果:
Array
(
[0] => B
[1] =>
[2] => !
)