ID: 36392 Updated by: [EMAIL PROTECTED] Reported By: tomas_matousek at hotmail dot com -Status: Assigned +Status: Closed Bug Type: Strings related Operating System: * PHP Version: 5.1.3RC3, 4.4.2 Assigned To: helly New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2006-04-11 11:16:04] [EMAIL PROTECTED] Marcus, this is your doing. :) ------------------------------------------------------------------------ [2006-02-14 19:15:07] tomas_matousek at hotmail dot com Description: ------------ Format specifier %e (scientific number) in sprintf() function gives results with wrong number of decimal digits and in one particular case it gives a mess. Reproduce code: --------------- echo sprintf("%e\n", 1.123456789); echo sprintf("%.10e\n", 1.123456789); echo sprintf("%.0e\n", 1.123456789); // this gives a mess echo sprintf("%.1e\n", 1.123456789); echo sprintf("%5.1e\n", 1.123456789); Expected result: ---------------- 1.123457e+0 1.1234567890e+0 1e+0 1.1e+0 1.1e+0 Actual result: -------------- 1.12346e+0 1.123456789e+0 .0e+0123456789 1.e+0 1.e+0 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=36392&edit=1
