php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39689 PHP converts float to integer incorrectly
Submitted: 2006-11-30 07:10 UTC Modified: 2006-11-30 09:28 UTC
From: toomuchphp-phpbugs at yahoo dot com Assigned:
Status: Not a bug Package: Math related
PHP Version: 5.2.0 OS: Mac OS X
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: toomuchphp-phpbugs at yahoo dot com
New email:
PHP Version: OS:

 

 [2006-11-30 07:10 UTC] toomuchphp-phpbugs at yahoo dot com
Description:
------------
PHP converts some floats to integers incorrectly (I only know of one example).

Reproduce code:
---------------
<?php
echo strval(2169.99 * 100), "\n";
echo intval(2169.99 * 100), "\n"; // converts incorrectly


Expected result:
----------------
216999
216999


Actual result:
--------------
216999
216998


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-11-30 09:28 UTC] tony2001@php.net
Floating point values have a limited precision. Hence a value might 
not have the same string representation after any processing. That also
includes writing a floating point value in your script and directly 
printing it without any mathematical operations.

If you would like to know more about "floats" and what IEEE
754 is read this:
http://docs.sun.com/source/806-3568/ncg_goldberg.html
 
Thank you for your interest in PHP.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sun Jun 01 13:01:26 2025 UTC