ID: 22207
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Assigned
Bug Type: Output Control
Operating System: W2K
PHP Version: 4.3.0
-Assigned To:
+Assigned To: iliaa
Previous Comments:
------------------------------------------------------------------------
[2003-02-13 09:22:29] [EMAIL PROTECTED]
Hi,
the following script
<?php
$x=sprintf("%10.5e", 1.1);
echo "$x";
?>
produces 1.1000e+
whereas
<?php
$x=sprintf("%10.5e", 0.11);
echo "$x";
?>
returns the correct result 1.1000e-1
I would expect that output for the first example should be something
like
1.1000e+0 or 1.1000e0
Regards
Andreas Maul
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=22207&edit=1