PHP floor() 函数
PHP floor() 函数
实例
向下舍入为最接近的整数:
<?php
echo(floor(0.60) . "<br>");
echo(floor(0.40) . "<br>");
echo(floor(5) . "<br>");
echo(floor(5.1) . "<br>");
echo(floor(-5.1) . "<br>");
echo(floor(-5.9));
?>
echo(floor(0.60) . "<br>");
echo(floor(0.40) . "<br>");
echo(floor(5) . "<br>");
echo(floor(5.1) . "<br>");
echo(floor(-5.1) . "<br>");
echo(floor(-5.9));
?>
运行实例 »
定义和用法
floor() 函数向下舍入为最接近的整数。
提示:如需向上舍入为最接近的整数,请查看 ceil() 函数。
提示:如需对浮点数进行四舍五入,请查看 round() 函数。
语法
floor(number);
参数 | 描述 |
---|---|
number | 必需。规定需向下取整的值。 |
技术细节
返回值: | 向下舍入的最接近的整数值。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 常量
- PHP 数组
- PHP For 循环
- PHP 命名空间 namespace
- PHP 文件处理
- PHP Session
- PHP 高级过滤器
- PHP array_diff() 函数
- PHP array_fill_keys() 函数
- PHP array_multisort() 函数
- PHP array_push() 函数
- PHP array_walk_recursive() 函数
- PHP each() 函数
- PHP key() 函数
- PHP natcasesort() 函数
- PHP prev() 函数
- PHP sizeof() 函数
- PHP sort() 函数
- PHP Filter 函数
- PHP PDO