A-A+
/includes/cls_template.php on line 406
之前在夏日博客的文章里面,不少次提到 ecshop 与 php 不兼容导致的错误问题,今天遇到的这个问题也是之前提到过的,我们先来看一下错误代码:
/includes/cls_template.php on line 406
是 cls_template.php,上次好像也是这个问题来着,已经忘记了,不过今天又到了,再来解决一下吧,下面是解决的方法。
打开 includes/cls_template.php 文件,找到 406 行,如下代码:
$tag_sel = array_shift(explode(' ', $tag));
修改成如下代码:
$tag_arr = explode(' ', $tag);
$tag_sel = array_shift($tag_arr);
问题解决。