If the first and only parameter is an array, max()
returns the highest value in that array. If at least two parameters are
provided, max() returns the biggest of these values.
Note:
Values of different types will be compared using the
standard comparison rules. For instance, a non-numeric string will be
compared to an int as though it were 0, but multiple non-numeric
string values will be compared alphanumerically. The actual value returned will be of the
original type with no conversion applied.
Caution
Be careful when passing arguments of different types because
max() can produce unpredictable results.
max() returns the parameter value considered "highest" according to standard
comparisons. If multiple values of different types evaluate as equal (e.g. 0
and 'abc') the first provided to the function will be returned.
// Here we are comparing -1 < 0, so 'hello' is the highest value echo max('hello', -1), PHP_EOL; // hello
// With multiple arrays of different lengths, max returns the longest $val = max(array(2, 2, 2), array(1, 1, 1, 1)); // array(1, 1, 1, 1) var_dump($val);
// Multiple arrays of the same length are compared from left to right // so in our example: 2 == 2, but 5 > 4 $val = max(array(2, 4, 8), array(2, 5, 1)); // array(2, 5, 1) var_dump($val);
// If both an array and non-array are given, the array will be returned // as comparisons treat arrays as greater than any other value $val = max('string', array(2, 5, 7), 42); // array(2, 5, 7) var_dump($val);
// If one argument is NULL or a boolean, it will be compared against // other values using the rule FALSE < TRUE regardless of the other types involved // In the below example, -10 is treated as TRUE in the comparison $val = max(-10, FALSE); // -10 var_dump($val);
// 0, on the other hand, is treated as FALSE, so is "lower than" TRUE $val = max(0, TRUE); // TRUE var_dump($val); ?>
With modern PHP versions supporting the array spread operator for function arguments, it's tempting to call max() like this:
<?php function stuff(): iterable { // This function might yield 0, 1 or n values. }
$foo = max(...stuff()); ?>
However, this is dangerous if you cannot guarantee that your generator yields **minimum** two values.
The gotcha here is that when max() receives a single argument, it must be an array of values. (When the generator doesn't yield any values, max() will throw an ArgumentCountError.)
If you can guarantee that your generator yields at least one value, then it's safe to call max by relying on the aforementioned array expectation:
<?php function stuff(): iterable { // This function will yield 1...n values. }
// Note that here the generator is first read into an array. $foo = max([...stuff()]); ?>
If the array is empty, max() will throw a ValueError.
The added burden is that faulty code could appear to appear to function just fine but fails at random, probably causing a lot of head-scratching at first.
(a) If any of your parameters is boolean, max and min will cast the rest of them to boolean to do the comparison. (b) true > false (c) However, max and min will return the actual parameter value that wins the comparison (not the cast).
Be aware if a array like this is used (e.g. values from a shopping cart): <?php Array ( [0] => 142,80 [1] => 39,27 [2] => 22,80 [3] => 175,80 )?> The result will be: 39,27 and not - as expected - 175,80
So, to find the max value, use integer only like: <?php Array ( [0] => 14280 [1] => 3927 [2] => 2280 [3] => 17580 )?> and you will get the correct result: 17580
If you want to find the specific key(s) that match the maximum value in an array where the values may be duplicated, you can loop through and perform a simple check: <?php
# Create a new array containing all keys which have the max value foreach($a as $key => $val) { if($val === $max) $b[] = $key; }
# If you want a string list, just do this $b = implode(' ', $b); ?>
This produces consistent results and will scale well in terms of performance, whereas functions like array_search and array_flip can lead to degraded performance when dealing with large amounts of data.