Strict Standards: Only variables should be passed by reference in D:wampecshopincludescls_template.php on line 406
第406行:$tag_sel = array_shift(explode(' ', $tag));
解決辦法 1
5.3以上版本的問題,應該也和配置有關 只要406行把這一句拆成兩句就沒有問題了
$tag_sel = array_shift(explode(' ', $tag));
改成:
$tag_arr = explode(' ', $tag);
$tag_sel = array_shift($tag_arr);
因為array_shift的參數(shù)是引用傳遞的,5.3以上默認只能傳遞具體的變量,而不能通過函數(shù)返回值;
解決辦法 2 :