欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP错误:Only variables should be passed by reference

程序员文章站 2022-05-06 09:08:24
...
PHP错误:Only variables should be passed by reference

原因在于PHP5.3版本开始,array_shift不支持函数返回

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

上述写法改成下面写法

$tag_tmp = (explode(' ', $tag));
$tag_sel = array_shift($tag_tmp);
//$tag_sel = array_shift(explode(' ', $tag));