Home  >  Article  >  Backend Development  >  Several methods of rounding in php_PHP tutorial

Several methods of rounding in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-20 11:14:461008browse


floor rounding syntax format: float floor (float value)
Returns the next integer not greater than value, rounding off the decimal part of value all. The type returned by floor() is still float, because the range of float values ​​is usually larger than that of integer.
echo floor(4.3); // 4
echo floor(9.999); // 9

ceil is rounded to the nearest integer. Syntax format: float ceil (float value)
Returns the next integer that is not less than value. If value has a decimal part, it is rounded up by one digit. The type returned by ceil() is still float, because the range of float values ​​is usually larger than that of integer
echo ceil(4.3); // 5
echo ceil(9.999); // 10

round rounds floating point numbers
Syntax: float round ( float val [, int precision] )
echo round(3.4); // 3
echo round(3.5); // 4
echo round(3.6); // 4
echo round(3.6, 0); // 4
echo round(1.95583, 2); // 1.96
echo round(1241757, -3) ; // 1242000
echo round(5.045, 2); // 5.05
echo round(5.055, 2); // 5.06
Source reference for this article: http://www.jbxue.com/article /9282.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/440255.htmlTechArticlefloor rounding syntax format: float floor (float value) returns the next integer not greater than value, Round off the decimal part of value. The type returned by floor() is still float...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn