$options = Typecho_Widget::widget('Widget_Options');
$sUrl = str_ireplace('/', '\/', rtrim($options->siteUrl, '/'));
$preg = '#(<a .*?href=")(?!' . $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 수정자를 버린 것입니다.
이렇게 바꿔야 될 것 같아요
으아아아이 기능이 중단되었는지 어디서 확인할 수 있나요?
http://php.net/manual/zh/func...
지원 (PHP 4, PHP 5, PHP 7)
오류 메시지 게시
Preg 접두사가 붙은 함수는 쓸모가 없지만, eregi 접두사가 붙은 함수는 쓸모가 없습니다