mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
where continue continues (bug #33119)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@186924 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
6084172faf
commit
8b49b2e359
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.117 $ -->
|
||||
<!-- $Revision: 1.118 $ -->
|
||||
<chapter id="language.control-structures">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -733,7 +733,7 @@ while (++$i) {
|
|||
<simpara>
|
||||
<literal>continue</literal> 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.
|
||||
</simpara>
|
||||
<note>
|
||||
<simpara>
|
||||
|
|
Loading…
Reference in a new issue