Menyortir array kueri SQL berdasarkan Kunci Kolom PHP
//Sorting $Content array by page_order column key in ascending order
array_multisort(array_column($Content, "page_order"), SORT_ASC, $Content);
//Sorting $Content array by id in ascending order
array_multisort(array_column($Content, "id"), SORT_ASC, $Content);
artharus