如何在Yii2中建立一个良好的数组结构?

时间:2017-04-04 19:13:39

标签: php yii highcharts yii2 drilldown

我有这样的表

enter image description here

enter image description here

这些是代码:

控制器

https://pastebin.com/7vf9zRrY

查看

https://pastebin.com/1tLCjHsH

当我尝试运行这些代码时,为什么会出错? 这是消息错误:

enter image description here

我该怎么做才能解决这个问题?谢谢

1 个答案:

答案 0 :(得分:0)

变量$faculty不是对象数组,而是字符串(是column()类的方法Query返回的)。因此,foreach会立即为您提供变量的值:

foreach($faculty as $key=>$data){
                array_push($faculty_lessarr,
                    array('name'=>$data,
...