码迷,mamicode.com
首页 > Web开发 > 详细

PHP报错Only variables should be passed by reference in的解决方法

时间:2020-03-03 10:41:14      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:不能   col   span   reference   函数返回值   nbsp   解决方法   exp   array   

这个问题多半是因为引用传递参数引起的,解决办法一是修改代码不使用引用传递。

array_shift(explode( , $tag));

PHP5.3以上默认只能传递具体的变量,而不能通过函数返回值传递。

$tagArr = explode( , $tag);
$tag_sel = array_shift($tagArr);

 

参考地址:https://www.jb51.net/article/121929.htm

PHP报错Only variables should be passed by reference in的解决方法

标签:不能   col   span   reference   函数返回值   nbsp   解决方法   exp   array   

原文地址:https://www.cnblogs.com/wanghaokun/p/12400779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!