本文介绍了如何将小数点四舍五入?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用round()将小数点后的数字四舍五入到上位数字?

How can I use round() to round a number to the superior number as soon as there is a decimal?

例如:

1.00001      = 2
1.1          = 2
1.4785834975 = 2
1.00         = 1
1.99         = 2
3.01         = 4

推荐答案

是的,您要查找的内容称为 ceil

Yes, what you are looking for is called ceil

<?php
echo ceil(4.3);    // 5
echo ceil(9.999);  // 10
echo ceil(-3.14);  // -3
?>

这篇关于如何将小数点四舍五入?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 21:26