【发布时间】:2019-05-16 07:23:39
【问题描述】:
我需要排序方式详细名称“ASC”
我点击这个链接。https://laravel.com/docs/5.4/collections#method-sortby
这是我的调试数据
这是我的代码
$collection = collect($data);
dd($collection);
$sorted = $collection->sortBy(function ($product, $key) {
return count($product['detail']);
});
$sorted->values()->all();
但显示错误“Illegal string offset 'detail'”
【问题讨论】:
标签: php arrays laravel collections