From 2164b41ae774ef1ab37ff93c4ca0f0ec17093aaa Mon Sep 17 00:00:00 2001 From: irc-html Date: Sat, 19 Jan 2002 12:01:10 +0000 Subject: [PATCH] added CDATA tag for example git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68103 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index e104c7c870..d8e51fb743 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -297,7 +297,7 @@ endwhile; checked at the end of each iteration instead of in the beginning. The main difference from regular while loops is that the first iteration of a do..while loop is - guarenteed to run (the truth expression is only checked at the end + guaranteed to run (the truth expression is only checked at the end of the iteration), whereas it's may not necessarily run with a regular while loop (the truth expression is checked at the beginning of each iteration, if it evaluates to @@ -876,7 +876,7 @@ endswitch; The declare construct is used to set execution directives for a block of code. - The syntax of declare is similiar to + The syntax of declare is similar to the syntax of other flow control constructs: @@ -1049,6 +1049,7 @@ print_r (profile (TRUE)); Basic <function>require</function> examples + +]]>