PHP中数组排序有不少函数,但是没有现成的按数组中键值长度排序,经过检索,在stackoverflow找到了答案:

function sort($a,$b){
return strlen($b)-strlen($a);
}usort($array,'so[......]

阅读全文