最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
ecshop提示Strict Standards: Only variables should be passed by reference in错误
时间:2022-06-25 16:24:36 编辑:袖梨 来源:一聚教程网
ecshop提示Strict Standards: Only variables should be passed by reference in
E:/Tools/ECShop_V2.7.3_UTF8_release1106/upload/includes/cls_template.php
on line 418
这个错误,搜索问题原来是php版本的问题,我是用的php5.4版本的,解决办法如下:
只要418行把这一句拆成两句就没有问题了
代码如下 | 复制代码 |
$tag_sel = array_shift(explode(' ', $tag)); 改成: $tag_arr = explode(' ', $tag); $tag_sel = array_shift($tag_arr); |
(实验过,绝对可行) 因为array_shift的参数是引用传递的,5.3以上默认只能传递具体的变量,而不能通过函数返回值
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23