尝试在php codeigniter中返回下一行数据会出错
模型
//* Get next row
public function getNextRow($id)
{
$this->db->where('id', $id);
$query = $this->db->get('portfolios');
if($query->next_row())
{
return $query->next_row();
}
else
{
return FALSE;
}
}
控制器
public function test()
{
$nxt = $this->Portfolio_model->getNextRow(2);
if($nxt){
echo $nxt->id;
}
}