preg 替换为阿拉伯语
我想向 mysql 添加带有阿拉伯字符的文本,但是当我使用 preg 替换时,我总是得到奇怪的标志。
$str = preg_replace('/[^a-z0-9_-äÄüÜöÖ]/isU', '', $str);
I want to add a text to mysql with arabic characters, but I always get weird signs when i use preg replace.
$str = preg_replace('/[^a-z0-9_-äÄüÜöÖ]/isU', '', $str);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以在正则表达式后面使用小写字母“/u”,例如
请注意,每当您在正则表达式后面使用大写字母“/U”时,都会出现同样的问题。
I think you can use the small letter '/u' after the regular expression, e.g.
Notice that, same problem will occur whenever you use capital '/U' after the regular expression.