ID: 44086 Updated by: [EMAIL PROTECTED] Reported By: hosting at indiannic dot com -Status: Open +Status: Bogus Bug Type: Math related Operating System: windows 2000 PHP Version: 5.3CVS-2008-02-09 (snap) New Comment:
User error. precision .ini setting is hosed. Previous Comments: ------------------------------------------------------------------------ [2008-02-10 02:07:40] 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-09 17:01:57] 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-09 16:43:22] hosting at indiannic dot com note that if you use command line to check the answers are correct [EMAIL PROTECTED] 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 16:37:49] 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) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=44086&edit=1