来源:自学PHP网 时间:2014-11-28 23:31 作者: 阅读:次
[导读] 安装好后出现问题如下:Strict standards: Only variables should be passed by reference in includes lib_main php on line 1329解决方法:将语句 $ext = end(explode( 39; 39...
配置ecshop 后台管理报错安装好后出现问题如下:Strict standards: Only variables should be passed by reference in \includes\lib_main.php on line 1329 解决方法: 将语句 $ext = end(explode('.', $tmp)); 修改为: $ext = explode('.',$tmp); $ext = end($ext); Strict standards: Only variables should be passed by reference in \includes\cls_template.php on line 418 解决方法如下: tag_sel = array_shift(explode(' ', $tag)); 修改为: $tag_arr = explode(' ', $tag); $tag_sel = array_shift($tag_arr); 这是因为php版本高了之后,方法只支持传递变量. |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com