私は zend フレームワークを初めて使用します。この単純な関数で、単一の「投稿」を取得してから、関連するテーブル内のすべてのコメントを検索したい
public function getPost($idPost)
{
$db= Zend_Registry::get('db');
$select=$db->select()
->from($this->_name, '*')
->where("idPost= ".$db->quote($idPost, 'INTEGER'));
$stmt=$select->query();
$rowset=$stmt->fetchAll();
$post=$rowset->current();
//ora devo aggiungerci i commenti che questo post ha ricevuto
$comm=$post->findDependentRowset('commenti');
$ris=array($post, $comm);
return $ris;
}
私のインデックスコントローラーでは、単にこの関数を呼び出しますが、次のエラーが発生します。
Call to a member function current() on a non-object in C:\xampp\htdocs\...
間違いはどこですか?