From 180c4a16725be2232912c31c678562b69f458d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Ferreira=20da=20Silva=20Bacci?= Date: Sun, 1 Jun 2003 03:55:58 +0000 Subject: [PATCH] WS git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@129698 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 54839edd68..b6188571cf 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -681,10 +681,10 @@ while (++$i) { - Note that in PHP the - switch statement is - considered a looping structure for the purposes of - continue. + Note that in PHP the + switch statement is + considered a looping structure for the purposes of + continue. @@ -734,11 +734,11 @@ while ($i++ < 5) { - Note that unlike some other languages, the - continue statement - applies to switch and acts similar to break. If you - have a switch inside a loop and wish to continue to the next iteration of - the outer loop, use continue 2. + Note that unlike some other languages, the + continue statement + applies to switch and acts similar to break. If you + have a switch inside a loop and wish to continue to the next iteration of + the outer loop, use continue 2.