hello, does anybody know how could I get the TWO most largest values from the third column on the following array?
$ar = array(array(1, 1, 7.50, 'Hello'),
array(1, 2, 18.90, 'Hello'),
array(3, 5, 11.50, 'Hello'),
array(2, 4, 15.90, 'Hello'));
Output should be:
15.90
18.90
Thanks in advance