function degis($a,$b) {
if ($a['order'] == $b['order']) return 0;
return ($a['order'] < $b['order'])? -1 : 1;
}

usort($dizi,'degis');