|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-30 18:24 UTC] hholzgra@php.net
[2002-10-15 07:20 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 08:00:01 2025 UTC |
The following code displays the following: 1.234E-18 %e=1.23400 1.234E+18 %e=1.23400 ============================================= <pre> <?php $v1 = 1.234E-18; echo "$v1\n"; printf ("%%e=%e\n", $v1); echo "\n"; $v1 = 1.234E+18; echo "$v1\n"; printf ("%%e=%e\n", $v1); echo "\n"; ?> ========================================