如何在Laravel

时间:2017-10-24 08:33:32

标签: php arrays laravel object

我有一个像这样的对象:

Maatwebsite\Excel\Collections\RowCollection Object ( 
[heading:protected] => 
   Array ( 
       [0] => state 
       [1] => city 
       [2] => zipcode 
       ) 
[title:protected] => 
    Sheet1 [items:protected] => 
        Array ( 
            ...
            ) 
)

我想要[heading:protected]部分。我怎么得到它?

我尝试使用json_encode / json_decode,但无效

1 个答案:

答案 0 :(得分:4)

这是一个受保护的属性,这就是为什么你无法直接获取内容,如果你检查代码here,你会发现你可以使用getter方法

$heading = $rowCollection->getHeading();