From:             
Operating system: any
PHP version:      5.3.6
Package:          Math related
Bug Type:         Bug
Bug description:round(1e15+0.1) returns 1e15+0.1 instead of 1e15

Description:
------------
When round() is called with 1 argument which value is between 1e15 and
2^53, round() returns non-rounded value even if the value has fractional
part.



For instance, though 1e15 is exact number as IEEE 754 double precision,
round(1e15+0.1) returns 1e15+0.1. I think 1e15 is better result.

Test script:
---------------
<?php

'ini_set("precision",18);

var_dump(round(1000000000000000.1));

Expected result:
----------------
float(1000000000000000)

Actual result:
--------------
float(1000000000000000.12)

-- 
Edit bug report at http://bugs.php.net/bug.php?id=54479&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=54479&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=54479&r=trysnapshot53
Try a snapshot (trunk):              
http://bugs.php.net/fix.php?id=54479&r=trysnapshottrunk
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=54479&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=54479&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=54479&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=54479&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=54479&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=54479&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=54479&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=54479&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=54479&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=54479&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=54479&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=54479&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=54479&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=54479&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=54479&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=54479&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=54479&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=54479&r=mysqlcfg

Reply via email to