Blogger Information
Blog 56
fans 7
comment 11
visits 223153
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP取整,四舍五入取整、向上取整、向下取整、小数截取
樂成的开发笔记
Original
2598 people have browsed it

PHP取整数函数常用的四种方法:

1.直接取整,舍弃小数,保留整数:intval();

2.四舍五入取整:round();

3.向上取整,有小数就加1:ceil();

4.向下取整:floor()。

一、intval—对变数转成整数型态

intval如果是字符型的会自动转换为0。

实例

<?php
echo intval(3.14159);  // 3
echo intval(3.64159);  // 3
echo intval('ruesin'); //0
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

二、四舍五入:round()

根据参数2指定精度将参数1进行四舍五入。参数2可以是负数或零(默认值)。

实例

<?php
echo round(3.14159);      // 3
echo round(3.64159);      // 4
echo round(3.64159, 0);   // 4
echo '<br/>';
echo round(3.64159, 2);   // 3.64
echo '<br/>';
echo round(5.64159, 3);   // 3.642
echo '<br/>';
echo round(364159, -2);   // 364200
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

三、向上取整,有小数就加1:ceil()

返回不小于 value 的下一个整数,value 如果有小数部分则进一位。

这个方法,在我们写分页类计算页数时经常会用到。

实例

<?php
echo ceil(3.14159);  // 4
echo ceil(3.64159);  // 4
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

四、向下取整:floor()

返回不大于 value 的下一个整数,将 value 的小数部分舍去取整。

实例

<?php
echo floor(3.14159);    // 3
echo floor(3.64159);    // 3
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

————————————————

参考资料:CSDN


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post