mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
* Added missing T_GOTO parser token
* goto is a reserved keyword as of 5.3, not 6.0 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@265049 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
0bc5f03044
commit
2eb8cfe2d4
2 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.73 $ -->
|
||||
<!-- $Revision: 1.74 $ -->
|
||||
|
||||
<appendix xml:id="reserved" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>List of Reserved Words</title>
|
||||
|
@ -271,7 +271,7 @@
|
|||
<link linkend="language.namespaces">namespace</link> (as of PHP 5.3)
|
||||
</entry>
|
||||
<entry>
|
||||
goto (PHP 6 only)
|
||||
goto (as of PHP 5.3)
|
||||
</entry>
|
||||
<entry>
|
||||
<link linkend="language.constants.predefined">__DIR__</link> (as of PHP 5.3)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.30 $ -->
|
||||
<!-- $Revision: 1.31 $ -->
|
||||
|
||||
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
|
||||
<title>List of Parser Tokens</title>
|
||||
|
@ -337,6 +337,11 @@
|
|||
<entry>global</entry>
|
||||
<entry><link linkend="language.variables.scope">variable scope</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_GOTO</entry>
|
||||
<entry>goto</entry>
|
||||
<entry>undocumented (available since PHP 5.3.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_HALT_COMPILER</entry>
|
||||
<entry>__halt_compiler()</entry>
|
||||
|
|
Loading…
Reference in a new issue