mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Fix #29077.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162920 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
458180e83f
commit
59d27e72d5
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.92 $ -->
|
||||
<!-- $Revision: 1.93 $ -->
|
||||
<chapter id="language.control-structures">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -344,7 +344,7 @@ do {
|
|||
Advanced C users may be familiar with a different usage of the
|
||||
<literal>do..while</literal> loop, to allow stopping execution in
|
||||
the middle of code blocks, by encapsulating them with
|
||||
<literal>do..while</literal> (0), and using the <link
|
||||
<literal>do..while</literal> (1), and using the <link
|
||||
linkend="control-structures.break"><literal>break</literal></link>
|
||||
statement. The following code fragment demonstrates this:
|
||||
<informalexample>
|
||||
|
@ -364,7 +364,7 @@ do {
|
|||
|
||||
/* process i */
|
||||
|
||||
} while (0);
|
||||
} while (1);
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
Loading…
Reference in a new issue