How to sort an array based on a specific field in an array?

How can I sort an array based on two specific values ​​in an array? For instance:

$arr = array(
             array('a' => array('field1' => 'Abc', 'field2' => 'Def'), 'b' => 0)
             array('a' => array('field1' => 'Ghi', 'field2' => 'Jkl'), 'b' => 0)
            );

I want to sort this array based on a variable $arr[$i]['a']['field1']. How can i do this?

+3
source share
3 answers

Try:

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

uasort($arr, 'cmp');

This is just a small change in the example provided on the PHP documentation page: http://www.php.net/manual/en/function.uasort.php

+7
source

Create your own comparison function and use uasort

http://us.php.net/manual/en/function.uasort.php

+1
source

( ), sort() .

+1
source

Source: https://habr.com/ru/post/1735481/


All Articles