我想显示有关Activity
该函数应该返回getCurrent()
的对象的信息。ListActivity
当我尝试它时,它工作得很好,我有课堂上需要的信息,但是,我在页面顶部有这个错误消息:
致命错误:在第 34 行的 /Applications/XAMPP/xamppfiles/htdocs/site/prototype/administration.php 中的非对象上调用成员函数 getIdentifiant()
第 34 行在这里:
while($listActivities->next())
{
$current = new Activity();
$current = $listActivities->getCurrent();
echo $current->getId(); // line 34
}
这是getCurrent()
返回 Activity 对象的函数。
public function getCurrent()
{
if(isset($this->activities[$this->current]))
return $this->activities[$this->current];
}
我不明白为什么我有这个问题,因为它返回了我想要的对象。请帮我弄清楚。谢谢。