Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP - Usort returns 1 instead array [duplicate]

Tags:

php

usort

I have multidimensional array that i want to sort by field containing unix timestamp:

 Array ( 
[0] => Array ( [0] => 723 [1] => 1442008738 ) 
[1] => Array ( [0] => 721 [1] => 1386802800 ) 
[2] => Array ( [0] => 718 [1] => 1356994800 ) 

) 

But when i use Usort, it just returns 1. What am i doing wrong?

function date_compare($a, $b)
{
    $t1 = $a[1];

    $t2 = $b[1];
    return $t1 - $t2;
}    
print_r(usort($dosortowania2, 'date_compare'));
like image 998
czyzkowski czyzkowski Avatar asked Sep 11 '15 10:09

czyzkowski czyzkowski


1 Answers

usort (http://php.net/usort) performs the sort directly on the provided array. The return value just returns boolean telling if the sorting suceeded.

usort($dosortowania2, 'date_compare');
print_r($dosortowania2);
like image 102
Peter Uhnak Avatar answered Sep 30 '22 13:09

Peter Uhnak