對多維數組排序,通用的作法是
1 獲取利用排序的資料並且將其放入數組$arrSort. 其中鍵索引為要排序數組的索引,保證唯一性
2 利用排序函數sort等對$arrSort進行排序.
3 遍歷$arrSort, 根據其索引,獲取多維數組的數據,重新構造排序後的多維數組.
Array ( [0] => Array ( [link] => test [name] => test.rpm [type] => file [size] => 988.9k [mtime] => 1185160178) .... )
I 很久以前在網上找到的一個排序函數,談不上高效,但很實用 II
_array_sort($arrFile, 1, 1);//根据name字段排序 _array_sort($arrFile, 3, 1);//根据size字段排序 /* @records 要排序的数组 @field要排序的字段,注意是数字 @reverse正序还是反序 */ function _array_sort($records, $field, $reverse, $defaultSortField = 0) { $uniqueSortId = 0; $hash = array(); $sortedRecords = array(); $tempArr = array(); $indexedArray = array(); $recordArray = array(); foreach($records as $record) { $uniqueSortId++; $recordStr = implode("|", $record)."|".$uniqueSortId; $recordArray[] = explode("|", $recordStr); } $primarySortIndex = count($record); $records = $recordArray; foreach($records as $record) { $hash[$record[$primarySortIndex]] = $record[$field]; } uasort($hash, "strnatcasecmp"); if($reverse) $hash = array_reverse($hash, true); $valueCount = array_count_values($hash); foreach($hash as $primaryKey => $value) { $indexedArray[] = $primaryKey; } $i = 0; foreach($hash as $primaryKey => $value) { $i++; if($valueCount[$value] > 1) { foreach($records as $record) { if($primaryKey == $record[$primarySortIndex]) { $tempArr[$record[$defaultSortField]."__".$i] = $record; break; } } $index = array_search($primaryKey, $indexedArray); if(($i == count($records)) || ($value != $hash[$indexedArray[$index+1]])) { uksort($tempArr, "strnatcasecmp"); if($reverse) $tempArr = array_reverse($tempArr); foreach($tempArr as $newRecs) { $sortedRecords [] = $newRecs; } $tempArr = array(); } } else { foreach($records as $record) { if($primaryKey == $record[$primarySortIndex]) { $sortedRecords[] = $record; break; } } } } return $sortedRecords; }
array_mutisort還可以根據多個值來進行二次或者三次排序,這是上一個函數所不能比的.
利用array_map获取要依据排序的数组 $arrField = array_map(create_function('$n', 'return $n["size"];'), $arrFile); //利用array_mutisort来进行排序 $array_multisort($arrField, SORT_DESC, $arrFile);
III 最終測試
以188個資料的排序數組進行測試條資料的排序數組進行測試條的排序數組50次求平均.
第一種方式
0.04269016 name
0.04267142 size
第二種方式
0.001249 name
第二種方式
0.001249 name
0.00083 map array_multisort 高效處理多維數組排序相關文章請關注PHP中文網!