So I know that min() can get me the lowest value from an array, however I need the 3 lowest values from an array.
assuming my array is named $myArray:
I used asort($myArray) on my array, then print_r($myArray) outputs this:
Array (
[137] => 4.90416668118
[135] => 7.1203544474
[18] => 7.2476262434
[81] => 8.37903400152
[33] => 9.1074567001
[4] => 9.90788482793
[138] => 10.2493339987
[5] => 11.6024401676
[63]...and so on until
[124] => 8727.73285117
[153] => 8727.73285117
[117] => 8727.73285117
)
How can I get the 3 first values or the X first values should I need to…
I SHOULD HAVE SPECIFIED: Is it possible to do this with losing the keys?
http://www.php.net/manual/en/function.asort.php
http://www.php.net/manual/en/function.array-slice.php