I have array:
$array = array(array('2012-12-12', 'vvv'), array('2012-12-14', 'df'),array('2012-12-10', 'vvv'),array('2012-12-11', 'vvv'));
Array
(
    [0] => Array
        (
            [0] => 2012-12-12
            [1] => vvv
        )
    [1] => Array
        (
            [0] => 2012-12-14
            [1] => df
        )
    [2] => Array
        (
            [0] => 2012-12-10
            [1] => vvv
        )
    [3] => Array
        (
            [0] => 2012-12-11
            [1] => vvv
        )
)
is possible to sort this with dates DESC? For this example should be:
$array[1] //2012-12-14
$array[0] //2012-12-12
$array[3] //2012-12-11
$array[2] //2012-12-10
For me the best way is use embedded functions for PHP, but how? :)
 
     
     
    