mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
add missings constants to the appendix
remove duplicate info in the tokenizer extension and link to the appendix git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@200439 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
40ba9c6e0e
commit
08ecb08130
2 changed files with 52 additions and 1326 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<!-- $Revision: 1.21 $ -->
|
||||
|
||||
<appendix id="tokens">
|
||||
<title>List of Parser Tokens</title>
|
||||
|
@ -24,6 +24,11 @@
|
|||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>T_ABSTRACT</entry>
|
||||
<entry>abstract</entry>
|
||||
<entry><xref linkend="language.oop5.abstract"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_AND_EQUAL</entry>
|
||||
<entry>&=</entry>
|
||||
|
@ -76,6 +81,11 @@
|
|||
<entry>case</entry>
|
||||
<entry><link linkend="control-structures.switch">switch</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_CATCH</entry>
|
||||
<entry>catch</entry>
|
||||
<entry><xref linkend="language.exceptions"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_CHARACTER</entry>
|
||||
<entry></entry>
|
||||
|
@ -181,6 +191,11 @@
|
|||
<entry>(real), (double) or (float)</entry>
|
||||
<entry><link linkend="language.types.typecasting">type-casting</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_DOUBLE_COLON</entry>
|
||||
<entry>::</entry>
|
||||
<entry>see <constant>T_PAAMAYIM_NEKUDOTAYIM</constant> below</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_ECHO</entry>
|
||||
<entry>echo</entry>
|
||||
|
@ -269,6 +284,11 @@
|
|||
<entry>__FILE__</entry>
|
||||
<entry><link linkend="language.constants">constants</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_FINAL</entry>
|
||||
<entry>final</entry>
|
||||
<entry><xref linkend="language.oop5.final"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_FOR</entry>
|
||||
<entry>for</entry>
|
||||
|
@ -289,11 +309,21 @@
|
|||
<entry>global</entry>
|
||||
<entry><link linkend="language.variables.scope">variable scope</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_HALT_COMPILER</entry>
|
||||
<entry>__halt_compiler()</entry>
|
||||
<entry><xref linkend="function.halt-compiler"/> (available since PHP 5.1.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_IF</entry>
|
||||
<entry>if</entry>
|
||||
<entry><link linkend="control-structures.if">if</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_IMPLEMENTS</entry>
|
||||
<entry>implements</entry>
|
||||
<entry><xref linkend="language.oop5.interfaces"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_INC</entry>
|
||||
<entry>++</entry>
|
||||
|
@ -326,6 +356,11 @@
|
|||
<entry>(int) or (integer)</entry>
|
||||
<entry><link linkend="language.types.typecasting">type-casting</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_INTERFACE</entry>
|
||||
<entry>interface</entry>
|
||||
<entry><xref linkend="language.oop5.interfaces"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_ISSET</entry>
|
||||
<entry>isset()</entry>
|
||||
|
@ -560,6 +595,16 @@
|
|||
<entry>switch</entry>
|
||||
<entry><link linkend="control-structures.switch">switch</link></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_THROW</entry>
|
||||
<entry>throw</entry>
|
||||
<entry><xref linkend="language.exceptions"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_TRY</entry>
|
||||
<entry>try</entry>
|
||||
<entry><xref linkend="language.exceptions"/> (available since PHP 5.0.0)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>T_UNSET</entry>
|
||||
<entry>unset()</entry>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue