|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-27 23:18 UTC] alan_k@php.net
[2003-05-19 13:08 UTC] rmendes at agencyweb dot net
[2003-05-20 04:21 UTC] mgf@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 20:00:01 2025 UTC |
<?php $temp=-1.0; for($i=0;$i<=10;$i++) { $temp=$temp+0.2; echo "<br>".$temp; } ?> the output is : -0.8 -0.6 -0.4 -0.2 -5.55111512313E-017 0.2 0.4 0.6 0.8 1 1.2