首页 > 后端开发 > php教程 > Integers and Floating point numbers in PHP

Integers and Floating point numbers in PHP

WBOY
发布: 2016-06-23 14:33:01
原创
1359 人浏览过

原文: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:

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

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:

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

The result of this script:

Test 1: Are EqualTest 2: Are NOT Equal
登录后复制
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板