-
Notifications
You must be signed in to change notification settings - Fork 15
Chung Leong edited this page Jan 10, 2022
·
3 revisions
max - Find highest value
number max(number[] $values)
number max(number $value1, number $value2, ...)
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 largest of these values.
values - An array containing the values.
value1 - The first value.
value1 - The second value.
The highest value of the parameters provided.
1.0 and above.