PHP str_replace 函数详解
时间:2015-07-23 阅读:次 QQ群:182913345
str_replace() 函数以其他字符替换字符串中的一些字符(区分大小写)。
语法:
str_replace(find,replace,string,count);
参数说明:
find:必需,规定要查找的值。
replace:必需,规定替换 find 中的值的值。
string:必需,规定被搜索的字符串。
count:可选,对替换数进行计数的变量。
<?php //把字符串 "Hello world!" 中的字符 "world" 替换为 "Shanghai" echo str_replace("world","Shanghai","Hello world!"); |
上一篇:php输出九九乘法表
下一篇:php将多维数组转换为一维数组