我正在尝试获取集合中最后一个元素的属性。我试过了
end($collection)->getProperty()
和
$collection->last()->getProperty()
没有工作
(告诉我我正在尝试getProperty()
在布尔值上使用)。
/**
* Get legs
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getLegs()
{
return $this->aLegs;
}
public function getLastlegdate()
{
$legs = $this->aLegs;
return $legs->last()->getStartDate();
}
知道为什么吗?