出现Warning: Illegal string offset的解决方法

时间:2017-01-06
今天在做ecshop的时候,一段代码出现Warning: Illegal string offset的这样的错误,代码如下
 
 
$catlist = array_merge(cat_list(0, 0, false), array('-'), article_cat_list(0, 0, false));
    foreach($catlist as $key => $val)
    {
 
       echo  $val["cat_name"];
 
}
 
上面代码可以输出值,但是报错Warning: Illegal string offset 'cat_name' in  ,原因是$catlist数组里面有空数组,空数组里没有cat_name这个字段。最终解决办法是在 foreach 下面加个判断 if(is_array($val)),这样就搞定了。
 
上一条:关于网站调用视频站视频,手机端不能播放问题的解决办法 下一条:php提示Warning:mysql_fetch_array() expects的解决方法

相关文章

最新文章