SyntaxFix
Write A Post
Hire A Developer
Questions
My solution is:
$maxs = array_keys($array, max($array))
Note: this way you can retrieve every key related to a given max value.
If you are interested only in one key among all simply use $maxs[0]