|
minFind lowest value Description
mixed min
( array
$values
)
mixed min
( mixed
$value1
, mixed $value2
[, mixed $...
] )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.
Parameters
Return Valuesmin returns the numerically lowest of the parameter values. Examples
Example #1 Example uses of min
<?php
Example #2 Example of NULL/FALSE value with min
<?php See Also
|