感谢this post中的信息,我已成功设法将大部分 preg_replace 语句转换为 preg_replace_callback 语句。
但是,当我转换以下语句时:
$body_highlighted = preg_replace('/((<[^>]*)|' . preg_quote(strtr($query, array('\'' => ''')), '/') . ')/ie' . ($context['utf8'] ? 'u' : ''),
"'\$2' == '\$1' ? stripslashes('\$1') : '<strong class=\"highlight\">\$1</strong>'",
$body_highlighted);
到
$body_highlighted = preg_replace_callback('/((<[^>]*)|' . preg_quote(strtr($query, array('\'' => ''')), '/') . ')/i' . ($context['utf8'] ? 'u' : ''),
function ($matches) {
return $matches[2] == $matches[1] ? stripslashes($matches[1]) : "<strong class=highlight>$matches[1]</strong>";
},
$body_highlighted);
出现错误消息'Undefined offset:2'(原始 preg_replace 语句不会生成此错误)。
我花了几个小时试图解决这个问题但是,因为我以前从未做过PHP编程,所以我真的不知道它为什么不工作或者如何修复它。
答案 0 :(得分:0)
您的图案包含更改。在该交替的第一个分支中,定义了组2,但在第二个分支中不是这样。因此,如果第二个分支成功,则捕获组2未定义(如$matches[2]
)
要解决此问题,您只需要测试$matches[2]
isset()
但如果删除包含所有模式的无用捕获组,您可以用更简单的方式编写它:
$pattern = '/(<[^>]*)|' . preg_quote(str_replace("'", ''', $query), '/')
. '/i' . ($context['utf8'] ? 'u' : '');
$body_highlighted = preg_replace_callback($pattern, function ($m) {
return isset($m[1]) ? stripslashes($m[0])
: '<strong class="highlight">' . $m[0] . '</strong>';
}, $body_highlighted);