How do I get the highest and lowest values โ€‹โ€‹of array elements?

In an array like this:

$array['abc'] = 10;
$array['foo'] = 90;
$array['bar'] = 0;
$array['baz'] = 50;

      

How can I get the element with the highest value (90 in the above example) and the lowest value (0 in the example above)?

+2


source to share


2 answers


http://www.php.net/manual/en/function.min.php

echo min(2, 3, 1, 6, 7);  // 1

      

http://www.php.net/manual/en/function.max.php



echo max(1, 3, 5, 6, 7);  // 7

      

Hope it helps!

+12


source


with min () / max ()



$array = array();
$array['abc'] = 10;
$array['foo'] = 90;
$array['bar'] = 0;
$array['baz'] = 50;

echo " min: ", min($array);
echo " max: ", max($array);

      

+6


source







All Articles