language/control-structures/do-while.xml
7104ee97ced1768a3231588dfc0bc0d7eb1117ad
...
...
@@ -2,7 +2,7 @@
2
2
<!-- $Revision$ -->
3
3

4
4
<sect1 xml:id="control-structures.do.while" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
-
<title><literal>do-while</literal></title>
5
+
<title>do-while</title>
6
6
<?phpdoc print-version-for="dowhile"?>
7
7
<simpara>
8
8
<literal>do-while</literal> loops are very similar to
...
...
@@ -70,10 +70,7 @@ do {
70
70
</informalexample>
71
71
</para>
72
72
<simpara>
73
-
Don't worry if you don't understand this right away or at all.
74
-
You can code scripts and even powerful scripts without using this
75
-
'feature'.
76
-
Since PHP 5.3.0, it is possible to use
73
+
It is possible to use the
77
74
<link linkend="control-structures.goto"><literal>goto</literal></link>
78
75
operator instead of this hack.
79
76
</simpara>
80
77