Документ взят из кэша поисковой машины. Адрес оригинального документа : http://old.master.cmc.msu.ru/php/migration-while.html
Дата изменения: Sun Feb 3 22:59:11 2002
Дата индексирования: Tue Oct 2 00:17:21 2012
Кодировка:
while syntax

while syntax

Just like with if..endif, the syntax of while..endwhile has changed as well:

Example D-7. Migration: old while..endwhile syntax

while ($more_to_come);
    ...
endwhile;

Example D-8. Migration: new while..endwhile syntax

while ($more_to_come):
    ...
endwhile;

Warning

If you use the old while..endwhile syntax in PHP 3.0, you will get a never-ending loop.