PHP删除非标准字符
我的文本包含很多非标准字符,它们在数据库中的存储方式如下: <代码>ΓΓÇôΓÇ₧ΓΓ& #199;ôΓÇ₧
有没有办法过滤它们或将它们替换为空?
I have text with alot of non-standard characters and they are stored like this in database:ΓΓÇôΓÇ₧ΓΓÇôΓÇ₧
Is there a way to filter them or replace them with nothing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用 正则表达式
I would use a regular expression
使用您不需要的非标准字符创建一个数组。然后对其应用下一个代码。
Make an array with the non-standard characters you don't want. And then apply next code to it.