/includes/cls_template.php on line 406 Ecshop出现问题

客户在安装完模版后发现自己的网站出现 /includes/cls_template.php on line 406,下面ecshop开发中心教程帮助大家解决

ecshop 406错误
includes/cls_template.php文件中406行有这么一句:
$tag_sel = array_shift(explode(' ', $tag));

修改为
$tag_arr = explode(' ', $tag);
$tag_sel = array_shift($tag_arr);

改好后后台清除缓存

你可能感兴趣的:(PHP)