原文:http://www.ebrueggeman.com/blog/integers-and-floating-numbers/ Background

PHP is not a strictly typed language, and many programmers often overlook problems that can be caused with not paying attention to numeric types. The problem is that PHP does not alert you when you have gone outside of the bounds of what an integer can hold. Instead, it silently converts your value to a float (floating point number.)

Why should you care? Mathematic expressions with floats are not always exact ? sometimes they can be way off. PHP, like most programming languages, uses shortcuts to estimate the result of floating point mathematic expressions. The rule of thumb is that the larger the numbers you are working with, the greater amount of estimations involved in finding a result. If you were programming a PHP-based financial application, this could be a huge liability.

The best way to handle large numbers in PHP is to be aware of exactly what type of number you are dealing by knowing the PHP bounds of integers. PHP supplies a constant PHP_INT_MAX which will tell you what the maximum integer is for your instance of PHP. Not all computers/operating systems/versions of PHP are the same, so it is good to find the PHP_INT_MAX for each setup. Note that the PHP_INT_MAX also determines the smallest negative number ? just multiply it by -1 to get the PHP integer minimum.

PHP Integer Testing Script

Below is a testing script to help you determine the PHP_INT_MAX:

";   if (is_int($intMax)) {	echo "$intMax is an Int
";}else { echo "$intMax is NOT an Int
";} if (is_int($intMax + 1)) { echo "$intMax+1 is an Int
";}else { echo "$intMax+1 is NOT an Int
";} if (is_int($intMax * (-1))) { echo "$intMax*(-1) is an Int
";}else { echo "$intMax*(-1) is NOT an Int
";}?>
登录后复制

The result of this script:

21474836472147483647 is an Int2147483647+1 is NOT an Int2147483647*(-1) is an Int
登录后复制
PHP Float Testing Script

Now that you know the bounds of integers, what do you do? Truth be told, there is not a whole lot you can do to guarantee the integrity of your floating point numbers. It may be more important to know which figures are the result of math involving floating point numbers, so you can disclose this to your audience, and act accordingly. See the simple example below that shows how poorly PHP can do math involving floating point numbers:

";}   //TEST 2$number = 216897510871;$original_number = $number;   $number *= 11123.75;$number /= 11123.75;   if ($original_number == $number) {	echo "Test 2: Are Equal
";}else { echo "Test 2: Are NOT Equal
";}?>
登录后复制

The result of this script:

Test 1: Are EqualTest 2: Are NOT Equal
登录后复制

08-22 05:03