|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-01-16 03:05 UTC] yohgaki@php.net
[2002-01-16 03:11 UTC] torben@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 07:00:01 2025 UTC |
for ($i=1; $i==20; $i++) { echo($i); } does not work, while for ($i=1; $i>=20; $i++) { echo($i); } works fine. of course, if the first statement would work it wourld be redundant, so my questions is: is it a feature or a bug?