php怎么去除指定字符
如果没有中文的话可以用 str_replace
str_replace(find,replace,string,count)
str_replace() 函数以其他字符替换字符串中的一些字符(区分大小写)
参数
- find 必需。规定要查找的值。
- replace 必需。规定替换 find 中的值的值。
- string 必需。规定被搜索的字符串。
- count 可选。对替换数进行计数的变量。
例:把字符串 "Hello world!" 中的字符 "world" 替换为 "Shanghai"
echo str_replace("world","Shanghai","Hello world!");
输出结果:
Hello Shanghai!