programming-examples/php/Arrays/PHP program to get the index of the highest value in an associative array.php
2019-11-15 12:59:38 +01:00

12 lines
258 B
PHP

<?php
$x = array(
'value1' => 3021,
'value2' => 2365,
'value3' => 5215,
'value4' => 5214,
'value5' => 2145);
reset($x); // optional.
arsort($x);
$key_of_max = key($x);
echo "Index of the highest value : ".$key_of_max."\n";
?>