preg 替换为阿拉伯语

发布于 2024-10-26 05:28:31 字数 141 浏览 2 评论 0原文

我想向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百思不得你姐 2024-11-02 05:28:31

我认为您可以在正则表达式后面使用小写字母“/u”,例如

$str = preg_replace('/[^أب]/u', '', $str); 

请注意,每当您在正则表达式后面使用大写字母“/U”时,都会出现同样的问题。

I think you can use the small letter '/u' after the regular expression, e.g.

$str = preg_replace('/[^أب]/u', '', $str); 

Notice that, same problem will occur whenever you use capital '/U' after the regular expression.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文