#1 Pony
而当我们使用find/findAll的时候,可以:$results = $gb->findAll(null, " post_time ASC "); // 条件为空,排序是时间正序
$results = $gb->findAll(null, " post_time DESC "); // 条件为空,排序是时间正序
$results = $gb->findAll(array( 'name' => 'jake' ), " post_time ASC, replay DESC "); // 条件为name=jake,排序是时间正序然后回复反序的方式排列
2011-02-24 13:43:13