-
Notifications
You must be signed in to change notification settings - Fork 15
Chung Leong edited this page Jan 10, 2022
·
3 revisions
min - Find lowest value
number min(number[] $values)
number min(number $value1, number $value2, ...)
If the first and only parameter is an array, min() returns the lowest value in that array. If at least two parameters are provided, min() returns the smallest of these values.
values - An array containing the values.
value1 - The first value.
value1 - The second value.
The lowest value of the parameters provided.
1.0 and above.