From 8b49b2e359d9db9d15bb313bb2036e8a1cd6cab2 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 24 May 2005 09:55:58 +0000 Subject: [PATCH] where continue continues (bug #33119) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@186924 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 4b8e4ed695..14039050a6 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -733,7 +733,7 @@ while (++$i) { continue is used within looping structures to skip the rest of the current loop iteration and continue execution - at the beginning of the next iteration. + at the condition evaluation and then the beginning of the next iteration.