gpt4 book ai didi

arrays - Laravel 按键排序

转载 作者:行者123 更新时间:2023-12-04 12:00:59 25 4
gpt4 key购买 nike

我用代码创建了一个包含集合的数组:

$hours = Voucher::where('created_at','>=', Carbon::now()->startOfMonth())->get()->groupBy(function($item)
{
return $item->created_at->format('H');
});

dd($hours);

所以我得到这样的数据:

enter image description here

SO 键是小时 (00-23)。

我如何安排它从 00、01、02、03 开始​​......

最佳答案

https://laravel.com/docs/5.6/collections#method-sortkeys

$collection = collect([
'id' => 22345,
'first' => 'John',
'last' => 'Doe',
]);

$sorted = $collection->sortKeys();

5.1 更新

由于您使用的是 Laravel 5.1 并且没有 sortKeys 方法,因此您可以在对集合进行分组之前对其进行排序,这应该会导致键的顺序正确。
$collection->sort(function($a, $b) {
return strcmp($a->created_at->format('H'), $b->created_at->format('H'));
})->groupBy(function($item) {
return $item->created_at->format('H');
});

关于arrays - Laravel 按键排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51992883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com