|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-11-05 00:27 UTC] smoove at mail dot ru
Description:
------------
I could not reproduce this behavior with any other values.
Reproduce code:
---------------
<?php
$val = floor(140000000);
echo $val;
?>
Expected result:
----------------
140000000
Actual result:
--------------
1.4E+8
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 17:00:02 2025 UTC |
Ok, i actually can reproduce the problem... <?php for($i=1;$i<=200;$i++) { echo floor($i.'000000'); echo '<br>'; } ?> This gives me the feeling that this is not a Bug?!