使用 PHP 删除特殊字符
我的字符串是
iPad Applications In Bloom’s Taxonomy and ducause Review: “This Game Sucks”
现在我想将 " ' " 替换为 " ' ",将 " " " 替换为 ' "
Possible Duplicate:
How to replace Microsoft-encoded quotes in PHP
My string is
iPad Applications In Bloom’s Taxonomy and ducause Review: “This Game Sucks”
Now I want to replace " ’ " by " ' " and " “ " by ' " '
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在ideone上查看执行结果
See the results of execution on ideone
您可以创建要删除的字符数组,并使用 str_replace 替换为其他内容。
谢谢..
You can create array of character what you want to remove and use str_replace to replace with something else.
thanks..
尝试 str_replace 函数。
Try str_replace function.
您可以使用 str_replace :
You can use str_replace :