Answers for "array of array sort by 7th value"

PHP
1

php sort multidimensional array by value

function sortByOrder($a, $b) {
    return $a['order'] - $b['order'];
}

usort($myArray, 'sortByOrder');
Posted by: Guest on October-15-2020

Code answers related to "array of array sort by 7th value"

Browse Popular Code Answers by Language