search
Homephp教程php手册Solutions to inaccurate floating point calculations, comparisons and rounding in PHP_php basics

Comparison of floating point calculation results
An example of floating point calculation is as follows:

Copy code The code is as follows:

$a = 0.2 0.7;
$b = 0.9;
var_dump($a == $b);

The printed result is: bool(false). In other words, the calculation result of 0.2 0.7 here is not equal to 0.9, which is obviously against our common sense.

Regarding this issue, the official PHP manual once stated: Apparently a simple decimal fraction such as 0.2 cannot be converted to an internal binary format without losing a little precision. This has to do with the fact that it is impossible to express certain decimal fractions exactly with a finite number of digits. For example, 1/3 in decimal becomes 0.3333333….

We print the above variables in double precision format:

Copy code The code is as follows:

$a = 0.2 0.7;
$b = 0.9;
printf("%0.20f", $a);
echo '
';
printf("%0.20f", $b);

The output results are as follows:

Copy code The code is as follows:

0.89999999999999991118
0.90000000000000002220

Obviously here, as floating-point data, part of its accuracy has been lost and cannot be completely accurate. So never trust that a floating-point number result is accurate to the last digit, and never compare two floating-point numbers for equality. It should be noted that this is not a problem with PHP, but a problem with the computer's internal processing of floating point numbers! The same problem will be encountered in languages ​​such as C and JAVA.

So to compare two floating point numbers, we need to control them within the precision range we need before comparing, so use the bcadd() function to add the floating point numbers and convert the precision (to a string): p>

Copy code The code is as follows:

var_dump(bcadd(0.2,0.7,1) == 0.9); // Output: bool(true)

Floating point number rounding

In the article "PHP rounding functions ceil and floor", there is an example:

Copy code The code is as follows:

echo ceil(2.1/0.7); // Output: 4
?>

After the above discussion on floating-point number calculations, we know that this is caused by the inaccurate floating-point number calculation results:

Copy code The code is as follows:

printf("%0.20f", (2.1/0.7)); // Output: 3.00000000000000044409
?>

After the above discussion of floating-point number calculations, we know that this is caused by the inaccurate floating-point number calculation results, so we can use the round() function to deal with it:

Copy code The code is as follows:

echo ceil( round((2.1/0.7),1) );
?>

Although the round() function rounds according to the specified precision, retaining one decimal place has no effect on our rounding result.

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
php怎么将字符串转换成小数php怎么将字符串转换成小数Mar 22, 2023 pm 03:22 PM

PHP 是一门功能强大的编程语言,广泛应用于 Web 开发领域。其中一个非常常见的情况是需要将字符串转换为小数。这在进行数据处理的时候非常有用。在本文中,我们将介绍如何在 PHP 中将字符串转换为小数。

PHP浮点数四舍五入法PHP浮点数四舍五入法Mar 21, 2024 am 09:21 AM

这篇文章将为大家详细讲解有关PHP浮点数四舍五入法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。PHP浮点数四舍五入法概述浮点数在计算机中表示为小数点后跟指数,然而,它们通常以有限位数的近似值存储。当需要将浮点数四舍五入到特定精度时,有几种方法可以实现。方法1.round()函数round()函数将浮点数四舍五入为最接近的整数。它接受浮点数和可选的精度参数。例如:$num=1.55;echoround($num);//输出:2echoround($num,1)

使用strconv.FormatFloat函数将浮点数转换为字符串使用strconv.FormatFloat函数将浮点数转换为字符串Jul 25, 2023 am 11:45 AM

使用strconv.FormatFloat函数将浮点数转换为字符串在Go语言中,我们经常需要将浮点数转换为字符串类型,用于输出或者存储等需求。Go语言中提供了strconv包,其中的FormatFloat函数可以将浮点数转换为字符串类型。FormatFloat函数有三个参数:f表示要转换的浮点数,fmt表示格式,以及prec表示要保留的小数位数。其中,f参数

PHP浮点数计算误差原因及避免策略PHP浮点数计算误差原因及避免策略Feb 27, 2024 pm 06:33 PM

PHP作为一种流行的服务器端脚本语言,在进行浮点数计算时常常会遇到精度丢失或计算误差的问题,这些问题可能会对程序的准确性和稳定性造成影响。本文将探讨PHP浮点数计算误差的原因,并提出一些避免策略,同时给出具体的代码示例供参考。1.PHP浮点数计算误差的原因在计算机中,浮点数是以二进制形式表示的,而二进制并不能精确地表示所有的十进制小数,这就导致了浮点数的精

php怎么相除取整php怎么相除取整Mar 21, 2023 pm 02:52 PM

随着计算机编程的发展,我们在日常编程工作中可能会遇到需要进行除法运算并取整的场景。而在PHP编程中,我们可以使用不同的方法来实现这个目的。

深入浅出解析PHP BCMath:释放数字运算的潜力深入浅出解析PHP BCMath:释放数字运算的潜力Feb 23, 2024 am 09:10 AM

:一、BCMath简介BCMath是PHP内置的一个扩展库,专门用于处理大型整数和浮点数运算。它提供了丰富的函数来进行加、减、乘、除、平方、开方等各种数学运算,并且支持多种进制的数字表示。二、BCMath的优势BCMath相较于php原生提供的算术运算符和函数,主要有以下几个方面的优势:精度更高:BCMath的运算结果可以保留更多的有效数字,这对于涉及大数计算的场景尤为重要。范围更广:BCMath可以处理比PHP原生数据类型更大的数字,从而避免溢出或精度丢失的问题。功能更丰富:BCMath提供了

如何在PHP中将字符串转换为浮点数如何在PHP中将字符串转换为浮点数Mar 27, 2024 pm 12:48 PM

将字符串转换为浮点数是在PHP中常见的操作,可以通过内置的方法来实现。首先要确保字符串是合法的浮点数格式,才能成功地转换为浮点数。下面将详细介绍如何在PHP中将字符串转换为浮点数,并提供具体的代码示例。一、使用(float)强制转换在PHP中,将字符串转换为浮点数最简单的方式就是使用强制转换。强制转换的方式是在字符串前加上(float)即可,PHP会自动将其

如何使用C#中的Math.Truncate函数对浮点数进行向下取整如何使用C#中的Math.Truncate函数对浮点数进行向下取整Nov 18, 2023 pm 02:02 PM

如何使用C#中的Math.Truncate函数对浮点数进行向下取整,需要具体代码示例在C#编程中,经常会遇到需要对浮点数进行取整的情况。其中,向下取整是一种常见的操作,可以利用C#中的Math.Truncate函数实现。本文将详细介绍Math.Truncate函数的用法,并提供具体的代码示例。Math.Truncate函数是C#中的一个数学函数,用于将一个浮

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment