PHP中基于数组长度对数组数组进行排序的最佳方法是什么?
e.g。
$parent[0] = array(0, 0, 0);
$parent[2] = array("foo", "bar", "b", "a", "z");
$parent[1] = array(4, 2);
$sorted = sort_by_length($parent)
$sorted[0] = array(4, 2);
$sorted[1] = array(0, 0, 0);
$sorted[2] = array("foo", "bar", "b", "a", "z");
答案 0 :(得分:3)
这将有效:
function sort_by_length($arrays) {
$lengths = array_map('count', $arrays);
asort($lengths);
$return = array();
foreach(array_keys($lengths) as $k)
$return[$k] = $arrays[$k];
return $return;
}
请注意,此功能将保留数字键。如果要重置密钥,请将其包含在array_values()的调用中。
答案 1 :(得分:2)
我支持彼得,但我认为这是另一种方式:
function cmp($a1, $a2) {
if (count($a1) == count($a2)) {
return 0;
}
return (count($a1) < count($a2)) ? -1 : 1;
}
usort($array, "cmp");
答案 2 :(得分:0)
如果只使用长度作为数组键,那么做一个ksort呢?例如:
function sort_by_length($parent) {
foreach($parent as $child) {
$sorted[count($child)] = $child;
}
return ksort($sorted);
}
答案 3 :(得分:0)
尝试usort
功能:
function sortByLength( $arr1, $arr2 )
{
$c1 = count($arr1);
$c2 = count($arr2);
return $c1 < $c2 ? -1 : $c1 == $c2 ? 0 : 1;
}
usort($initial_array,'sortByLength');
编辑以尊重参考参数;它与@david的答案相同,无论如何