摘要:php中字符串与字符替换用str_replace()函数。str_replace()函数替换字符串中的一些字符(区分大小写),函数语法为:【str_replace(find,replace,string,count)】。str_replace()
php中字符串与字符替换用str_replace()函数。str_replace()函数替换字符串中的一些字符(区分大小写),函数语法为:【str_replace(find,replace,string,count)】。
str_replace() 函数替换字符串中的一些字符(区分大小写)。
(推荐教程:php图文教程)
函数语法:
str_replace(find,replace,string,count)
(视频教程推荐:php视频教程)
参数说明:
find 必需。规定要查找的值。
replace 必需。规定替换 find 中的值的值。
string 必需。规定被搜索的字符串。
count 可选。一个变量,对替换数进行计数。
代码举例:
<?php $arr = array("blue","red","green","yellow"); print_r(str_replace("red","pink",$arr,$i)); echo "Replacements: $i"; ?>
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13