>  기사  >  백엔드 개발  >  ecshop-php页面报错:preg_replace_callback()不知道怎么解决?

ecshop-php页面报错:preg_replace_callback()不知道怎么解决?

WBOY
WBOY원래의
2016-06-02 11:27:511685검색

ecshopphp源码callback

<code>   我的我的ecshop进入index页后就一直报错:Warning: preg_replace_callback(): Requires argument 2, 'Array', to be a valid callback in C:\AppServ\www\ecshop\includes\cls_template.php on line 1152        cls_template.php源码如下:        $pattern = array(        '/<!--[^>|\n]*?({.+?})[^<|{|\n]*?-->/', // 替换smarty注释        '/<!--[^<|>|{|\n]*?-->/',               // 替换不换行的html注释        '/(href=["|\'])\.\.\/(.*?)(["|\'])/i',  // 替换相对链接        '/((?:background|src)\s*=\s*["|\'])(?:\.\/|\.\.\/)?(images\/.*?["|\'])/is', // 在images前加上 $tmp_dir        '/((?:background|background-image):\s*?url\()(?:\.\/|\.\.\/)?(images\/)/is', // 在images前加上 $tmp_dir        '/([\'|"])\.\.\//is', // 以../开头的路径全部修正为空        );    $replace = array(        '\1',        '',        '\1\2\3',        '\1' . $tmp_dir . '\2',        '\1' . $tmp_dir . '\2',        '\1'        );    //return preg_replace($pattern, $replace, $source);    return preg_replace_callback($pattern, $replace, $source);</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.