5. PHP - Convert floating point numbers to integers php floating point number comparison php floating point number precision php floating point number format

WBOY
Release: 2016-07-29 08:53:57
Original
1623 people have browsed it

1. Use forced type conversion

First of all, PHP supports the following data types:

1. Integer    (整数)
2. Float      (浮点数)
3. String     (字符串)
4. Boolean    (布尔值)
5. Array      (数组)
6. Object     (对象)
Copy after login

In addition, there are two special types: NULL (empty) and resource (resource).

Note:
1. Variables that have not been assigned a value, have been reset, or are assigned the special value NULL are NULL type variables.
2. Certain built-in functions (such as database functions) will return variables of resource type.

Then you can use forced type conversion similar to C language. For example,

$a=6.66666;
$b=(integer)$a;
echo$b;
Copy after login

will output a 6, directly discarding the decimal part

2. Use the float floor (float value) function

rounding method and return no The next integer greater than value, round off the decimal part of value. 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
Copy after login

3. Use float ceil (float value) function

to round to an integer and return the next integer that is not less than value. If value has a decimal part, it will be rounded up. 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
Copy after login

4. Use the float round (float val [, int precision]) function

to round floating point numbers and return the result of rounding val according to the specified precision precision (the number of digits after the decimal point). precision can also be negative or zero (default).

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.04 
echo round(5.055, 2);    // 输出5.06
Copy after login
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above has introduced 5. PHP - Convert floating point numbers to integers, including PHP and floating point numbers. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
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!