二维数组排序算法 按值排序
foreach ($data as $key => $row) {
$edition[$key] = $row['98h'];
}
//降序
array_multisort($edition,SORT_DESC, $data);
print_r($data);
foreach ($data as $key => $row) {
$edition[$key] = $row['98h'];
}
//降序
array_multisort($edition,SORT_DESC, $data);
print_r($data);