当前位置:Gxlcms > PHP教程 > ecshop-php页面报错:preg_replace_callback()不知道怎么解决?

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

时间:2021-07-01 10:21:17 帮助过:21人阅读

ecshopphp源码callback

   我的我的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(        '//', // 替换smarty注释        '//',               // 替换不换行的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);

人气教程排行