Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何PHPActiveRecord按字母顺序对数组进行排序?
PHPActiveRecord
好吧,我最终得到了已经用 phpactiverecord 和 order_by 排序的数组:
$books = Book::find('all', array('order' => 'title_en asc'));
它有点工作......