如何分组和订购按日期时间Cakephp?

bak*_*rjr 0 mysql cakephp

您好如何使用CakePHP按日期时间字段进行分组和排序?

Thi*_*lem 10

$this->Post->find('all', array(
    'order' => array('Post.date' => 'DESC'),
    'group' => 'Post.date'
));
Run Code Online (Sandbox Code Playgroud)