不能使用stdClass类型的对象作为数组

时间:2014-04-19 12:53:04

标签: joomla stdclass

这里我将$ matches作为stdClass对象获取并想在joomla中显示链接但是我收到错误... 不能使用stdClass类型的对象作为数组 ...      ( on $ row =& $ match [$ i]; 行) 我不知道为什么那个快乐的人要求回答......

for ($i=0; $i <count($matches);$i++){
    $row =& $matches[$i]; //<== here is the error
    $row->link = JRoute::_('index.php?option='.$option.'&view=match&id='.$row->id);
}

这里是$ matches stdClass对象

中的一些值
object(stdClass)#159 (39) { 
    ["id"]=> string(3) "325" 
    ["ground"]=> string(0) "" 
    ["date"]=> string(10) "2014-04-16" 
    ["time"]=> string(8) "12:00:00" 
    ["commentator"]=> string(2) "me" 
    ["timekeeper"]=> string(3) "you" 
      and so on ....

0 个答案:

没有答案