Home > Backend Development > PHP Tutorial > 昨天开发遇到的一个问题 请问是什么原因0 0

昨天开发遇到的一个问题 请问是什么原因0 0

WBOY
Release: 2016-06-06 20:16:50
Original
1324 people have browsed it

昨天开发遇到的一个问题 请问是什么原因0 0

为什么输出1
其他的所有数字都正常 就是这个6865对比不正常 (这个是重点)

回复内容:

昨天开发遇到的一个问题 请问是什么原因0 0

为什么输出1
其他的所有数字都正常 就是这个6865对比不正常 (这个是重点)

编程的应该都知道一条道理吧,永远不要期待对浮点数的比较时正确的,这是浮点数存储方式决定的。

可以考虑bccomp函数

http://www.laruence.com/2011/12/19/2399.html

<code>    $a =68.65;
    $b =6865/100;
    echo $a.",".$b.", ";
    var_dump($a);
    var_dump($b);
    echo $a > $b ? 1: 0;</code>
Copy after login
Related labels:
php
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