Lov*_*ock 4 php arrays eloquent laravel-4
尝试对我雄辩的收藏进行排序:
$collection->sortBy('field');
Run Code Online (Sandbox Code Playgroud)
Laravel 4的文档中没有有关如何为这种排序方法选择降序或升序的信息。
可能吗?
按ASC排序:Laravel文档-sortBy()
$collection->sortBy('field');
按DESC排序:Laravel文档-sortByDesc()
$collection->sortByDesc('field');
https://laravel.com/docs/5.8/collections#method-sortby
https://laravel.com/api/4.2/Illuminate/Database/Eloquent/Collection.html#method_sortBy
$collection->sortBy('field', [], true); // true for descending
Run Code Online (Sandbox Code Playgroud)
小智 7
4.2中,第二个参数需要是int,默认为SORT_REGULAR
https://laravel.com/api/4.2/Illuminate/Database/Eloquent/Collection.html#method_sortBy
$collection->sortBy('field', SORT_REGULAR, true); // 降序为真
| 归档时间: |
|
| 查看次数: |
18212 次 |
| 最近记录: |