|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-21 05:30 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
Hi developers, 1) the easter functions doesn't work (in older versions you have to compile it with dl/calendar, but in newer versions it should be included (as it is written in the docu). 2) if a variable isn't defined it is '1' after you increment it. e.g: while($i <= 10){ echo 'Value = '.any_array[$i]; $i++; } any_array[0] will not be displayed, because it wasn't defined like "$i = 0;" in top of the loop. But if isn't '0', it shouldn't be '1' if you increment it.