我用
public function get_all_news()
{
$result = DB::select()
->from("parys_news")
->order_by("ID", "DESC")
->execute()
;
return $result;
}
创建查询。现在我想做一个类似的函数来计算查询中的记录
public function count_records($query)
{
}
如何在 Kohana 中做到这一点?