Массив заказа по столбце PHP
function cmp($a, $b)
{
return strcmp($a["title"], $b["title"]);
}
usort($array, "cmp");
Andean Goose
function cmp($a, $b)
{
return strcmp($a["title"], $b["title"]);
}
usort($array, "cmp");
//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);