【php】PHP7.0废弃preg_replace后怎么调整
$options = Typecho_Widget::widget('Widget_Options');$sUrl = str_ireplace('/', '\/', rtrim($options->siteUrl, '/'));
$preg = '#(<a .*?href="https://segmentfault.com/q/1010000009181962/)(?!' . $sUrl . ')([^"]+)"(.*?<\/a>)#ise';
$text = preg_replace($preg, "stripslashes('$1') . '$options->siteUrl' . 'go.html?url=' . base64_encode('$2') . '\" target=\"_blank\"' . stripslashes('$3')", $text);
代码放到PHP7.0后报错了,根据提示得知是preg_replace被废弃了,得用preg_replace_callback代替。请问怎么做?
回答
不是preg_replace被废弃,是/e这个修饰符被废弃。
我想大概应该这样改
preg_replace_callback($preg, function ($matches) {
return stripslashes($matches[1]).$options->siteUrl.'go.html?url='.base64_encode($matches[2]).'\" target=\"_blank\"'.stripslashes($matches[3]);
});
哪里看出放弃了这个函数了 ?
http://php.net/manual/zh/func...
支持 (PHP 4, PHP 5, PHP 7)
贴报错提示吧
preg前缀的都没废弃,废弃的是eregi前缀的函数
以上是 【php】PHP7.0废弃preg_replace后怎么调整 的全部内容, 来源链接: utcz.com/a/107133.html