Skip to content

sortKeys

按底层关联数组的键对集合进行排序

php
collect(['id' => 22345, 'first' => 'John', 'last' => 'Doe'])->sortKeys();

// ["first" => "John", "id" => 22345, "last" => "Doe"]

相关方法