mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Just some minor grammatical fixes.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@280154 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
415bec46b1
commit
7bc2f2a90a
1 changed files with 8 additions and 7 deletions
|
@ -1,12 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
|
||||
<sect1 xml:id="control-structures.goto" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title><literal>goto</literal></title>
|
||||
<para>
|
||||
The <literal>goto</literal> operator can be used to jump to other
|
||||
instruction in the program. The target place is specified by the label and a
|
||||
colon and <literal>goto</literal> is followed by that label.
|
||||
The <literal>goto</literal> operator can be used to jump to another
|
||||
section in the program. The target point is specified by a label
|
||||
followed by a colon, and the instruction is given as
|
||||
<literal>goto</literal> followed by the desired target label.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
|
@ -32,13 +33,13 @@ Bar
|
|||
</para>
|
||||
<note>
|
||||
<para>
|
||||
The <literal>goto</literal> operator is available since PHP 5.3.
|
||||
The <literal>goto</literal> operator is available as of PHP 5.3.
|
||||
</para>
|
||||
</note>
|
||||
<warning>
|
||||
<para>
|
||||
It is not allowed to jump into loop or switch statement. Fatal error is
|
||||
issued in such case.
|
||||
It is not allowed to jump into a loop or switch statement. A fatal
|
||||
error is issued in such cases.
|
||||
</para>
|
||||
</warning>
|
||||
|
||||
|
|
Loading…
Reference in a new issue