Several methods of rounding in php_PHP tutorial

WBOY
Release: 2016-07-20 11:14:46
Original
1043 people have browsed it


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...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!