I have a multidimensional array:
$externalData=array((array("a","b",3,"d"),array("f","g",1,"h),...))
I want to sort the arrays inside $externalData based on the numeric index (in this case at index 2, so the second array should come first once $externalData is sorted).
Is this possible? How? Thanks in advance, any help is appreciated