|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-22 13:59 UTC] johannes@php.net
[2006-05-22 14:20 UTC] violetphp at yahoo dot co dot jp
[2006-05-22 15:14 UTC] mgf@php.net
[2006-05-22 15:54 UTC] violetphp at yahoo dot co dot jp
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 UTC |
Description: ------------ Cannot use continue keyword with while/do-while. Reproduce code: --------------- $a = 0; do{ if($a == 5) continue; print "$a"; $a++; }while($a < 10); //OR $b = 0; while($b < 10){ if($b == 5) continue; print "$b"; $b++; } Expected result: ---------------- 012346789012346789 Actual result: -------------- Timeout...