$data = array(
    array('first', 3),
    array('second', 1),
    array('third', 2)
);

$key_row = array();

foreach ($data as $key => $row) { 
    //$key_row[$key]  = $row['정렬하고 싶은 칼럼']; 
    $key_row[$key]  = $row[1]; 
}

array_multisort($key_row, SORT_DESC, $data);

foreach ($data as $key => $row) { 
    echo $key." = ".$row."<br>";
}

+ Recent posts