时间:2021-07-01 10:21:17 帮助过:8人阅读
原因在于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));
< 上一篇
php读取和保存base64编码的图片
下一篇 >
PHP高效目录遍历方法,不用递归,不用DirectoryIterator
记住我的登录 忘记密码?
登录
我已阅读用户协议及版权声明
注册