我正在使用 codeigniter 开发一个博客站点。在该站点中,博客将列在最后一个第一顺序中。即最后一个将在顶部。在我的应用程序变量 $blogs 中包含所有要列出的博客和date_created.$blogs 将显示博客,但不是按要求的顺序。现在我想按 date_created 值对博客进行排序。
返回博客的主要模型函数在这里
public function LoadAllBlogs(){
$blogs = array();
$this->db->select('id');
$this->db->from('blog');
$q= $this->db->get();
foreach ($q->result() as $row) {
$blog = new Blog();
$blog->loadWithLatestPublishedEntry($row->id);
$blogs[] = $blog;
}
return $blogs; //contain all the blogs entry and the date in which blog is created
}
谁能帮我.....