PHP function floor()
Availability in PHP 4.0
Round fractions down
Parameters
| Parameter | Data type | Default value | Note |
|---|---|---|---|
$value |
float |
not | The numeric value to round |
Return values
float
value rounded to the next lowest integer. The return value of floor is still of type float because the value range of float is usually bigger than that of integer.