mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
make it cristal clear you cannot jump between files
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@282655 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2b6e5a2a74
commit
fdd664969d
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
|
||||
<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>
|
||||
|
@ -9,7 +9,7 @@
|
|||
followed by a colon, and the instruction is given as
|
||||
<literal>goto</literal> followed by the desired target label. This
|
||||
is not a full unrestricted <literal>goto</literal>. The target
|
||||
label must be within the same context, meaning that you cannot jump
|
||||
label must be within the same file and context, meaning that you cannot jump
|
||||
out of a function or method, nor can you jump into one. You also
|
||||
cannot jump into any sort of loop or switch structure. You may jump
|
||||
out of these, and a common use is to use a <literal>goto</literal>
|
||||
|
|
Loading…
Reference in a new issue