警告:preg_match() [function.preg-match]:未知修饰符 'v'

发布于 2024-10-21 22:10:28 字数 223 浏览 1 评论 0原文

我在我的 WordPress 博客中关于同一行代码不断收到此错误大约 20 次。这是不断出现错误的代码行。

if ( preg_match( '/' . $id_base . '-([0-9]+)$/', $widget_id, $matches ) )
        $number = max($number, $matches[1]);

可能出什么问题了?

I keep getting this error about 20 times in my wordpress blog about the same line of code. Here is the line of code that keeps getting the error.

if ( preg_match( '/' . $id_base . '-([0-9]+)$/', $widget_id, $matches ) )
        $number = max($number, $matches[1]);

What could be wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

很快妥协 2024-10-28 22:10:28

当您使用 / 作为正则表达式分隔符时,如果字符串 $id_base 中有 / ,您的正则表达式将会中断。

要修复此问题,请在 $id_base 上使用 preg_quote,如下所示:

if (preg_match('/'. preg_quote($id_base,'/').'-([0-9]+)$/', .....) {

Your regex will break if the string $id_base has a / in it as you are using / as the regex delimiter.

To fix this use preg_quote on $id_base as:

if (preg_match('/'. preg_quote($id_base,'/').'-([0-9]+)$/', .....) {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文