PHP sort multidimensional array by date

后端 未结 4 1467
遇见更好的自我
遇见更好的自我 2021-01-18 16:58

I\'m having a problem. I have a multidimensional array, that looks like this:

Array ( [0] => 
              Array ( 
                    [0] => Testguy         


        
4条回答
  •  花落未央
    2021-01-18 17:53

    You can do it using usort with a Closure :

    usort($array, function($a, $b) {
        $a = strtotime($a[2]);
        $b = strtotime($b[2]);
        return (($a == $b) ? (0) : (($a > $b) ? (1) : (-1)));
    });
    

提交回复
热议问题