php中的字符串替换函数是什么

来自:互联网
时间:2020-04-28
阅读:
免费资源网 - https://freexyz.cn/

如果字符串中没有中文可以使用str_replace()函数替换字符串。

语法格式:

str_replace(find,replace,string,count)

参数介绍:

php中的字符串替换函数是什么

实例:

把字符串 "Hello world!" 中的字符 "world" 替换为 "ShanghAI"

echo str_replace("world","Shanghai","Hello world!");
免费资源网 - https://freexyz.cn/
返回顶部
顶部