php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #44086 dividing problem
Submitted: 2008-02-09 16:37 UTC Modified: 2008-02-10 05:19 UTC
From: hosting at indiannic dot com Assigned:
Status: Not a bug Package: Math related
PHP Version: 5.3CVS-2008-02-09 (snap) OS: windows 2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
50 - 34 = ?
Subscribe to this entry?

 
 [2008-02-09 16:37 UTC] hosting at indiannic dot com
Description:
------------
division of float values give irrational results.
we have php version 4.3.10 and php 5.2.5 on the same server

this link is on php 5.2.5
http://maptelltrack.com/divide.php
this gives correct Wrong answer

this is on php 4.3.10
http://maptell.com/divide.php
this gives correct answer

when we use command line ie php 

Reproduce code:
---------------
<?php
$value = var_dump (46985.532 / 3600) ;
 echo($value);
?>


Expected result:
----------------
float(10)

Actual result:
--------------
float(13.0515366667)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-02-09 16:43 UTC] hosting at indiannic dot com
note that if you use command line to check the answers are correct

[marcus@zaphod PHP_5_3]$ php -r 'var_dump(46985.532 / 3600 );'
make: `sapi/cli/php' is up to date.
float(13.051536666667)


if you however put it on windows 2000 and iis 5 webserver the results are incorrect ...
 [2008-02-09 17:01 UTC] hosting at indiannic dot com
hi

by mistake i reversed the expected and actual result

it shud be as such

Expected result:
----------------
float(13.0515366667)


Actual result:
--------------
float(10)
 [2008-02-10 02:07 UTC] hosting at indiannic dot com
further information

the php.ini path configured in the windows registry

here is the php info file for each website


php version 5.2.5
using php-cgi.exe
http://maptelltrack.com/phpinfo.php


php version 4.3.10
using php.exe
http://maptell.com/info.php
 [2008-02-10 05:19 UTC] rasmus@php.net
User error.  precision .ini setting is hosed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 06:01:29 2024 UTC