Use the uasort function, which is user customizable sorting. Like this: function cmp($a, $b) { if ($a['date'] == $b['date']) { return 0; } ...
確定! 回上一頁