I have this $countries array:
Array ( [0] => 2013 Germany [1] => country [2] => Berlin [3] => Beer)
Array ( [0] => 2012 Italy [1] => country [2] => Rome [3] => Wine )
Array ( [0] => 2013 Germany [1] => country [2] => Munich [3] => Beer )
Array ( [0] => 2013 Germany [1] => country [2] => Dusseldorf [3] => Beer )
Array ( [0] => 2013 Italy [1] => country [2] => Venice [3] => Wine )
Array ( [0] => 2013 Russia ....) etc
I would like is to sort it by ascending order of the year so I'd have something like
Array ( [0] => 2012 Italy [1] => country [2] => Rome [3] => Wine )
Array ( [0] => 2013 Germany [1] => country [2] => Berlin [3] => Beer)
Array ( [0] => 2013 Germany [1] => country [2] => Munich [3] => Beer )....
I've tried sort, asort and natsort but none of them seem to work so far.
Any ideas?