Added news tokens (T_NS_C, T_METHOD_C) and link in T_USE

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246348 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Felipe Pena 2007-11-17 19:11:31 +00:00
parent dfa1a2de61
commit e1baed40c3

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.26 $ -->
<!-- $Revision: 1.27 $ -->
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
<title>List of Parser Tokens</title>
@ -96,6 +96,14 @@
<entry>class</entry>
<entry><link linkend="language.oop">classes and objects</link></entry>
</row>
<row>
<entry>T_CLASS_C</entry>
<entry>__CLASS__</entry>
<entry>
<link linkend="language.constants">constants</link>
(available since PHP 4.3.0)
</entry>
</row>
<row>
<entry>T_CLONE</entry>
<entry>clone</entry>
@ -310,6 +318,14 @@
<entry>function or cfunction</entry>
<entry><link linkend="language.functions">functions</link></entry>
</row>
<row>
<entry>T_FUNC_C</entry>
<entry>__FUNCTION__</entry>
<entry>
<link linkend="language.constants">constants</link>
(available since PHP 4.3.0)
</entry>
</row>
<row>
<entry>T_GLOBAL</entry>
<entry>global</entry>
@ -435,6 +451,14 @@
<entry>xor</entry>
<entry><link linkend="language.operators.logical">logical operators</link></entry>
</row>
<row>
<entry>T_METHOD_C</entry>
<entry>__METHOD__</entry>
<entry>
<link linkend="language.constants">constants</link>
(available since PHP 5.0.0)
</entry>
</row>
<row>
<entry>T_MINUS_EQUAL</entry>
<entry>-=</entry>
@ -459,6 +483,15 @@
<entry><link linkend="language.operators.assignment">assignment
operators</link></entry>
</row>
<row>
<entry>T_NS_C</entry>
<entry>__NAMESPACE__</entry>
<entry>
<link linkend="language.namespaces">namespaces</link>.
Also defined as <constant>T_NAMESPACE</constant>
(available since PHP 5.3.0)
</entry>
</row>
<row>
<entry>T_NEW</entry>
<entry>new</entry>
@ -636,7 +669,8 @@
<row>
<entry>T_USE</entry>
<entry>use</entry>
<entry>(not implemented)</entry>
<entry><link linkend="language.namespaces">namespaces</link>
(available since PHP 5.3.0)</entry>
</row>
<row>
<entry>T_VAR</entry>
@ -665,22 +699,6 @@
<entry><link linkend="language.operators.assignment">assignment
operators</link></entry>
</row>
<row>
<entry>T_FUNC_C</entry>
<entry>__FUNCTION__</entry>
<entry>
<link linkend="language.constants">constants</link>
(available since PHP 4.3.0)
</entry>
</row>
<row>
<entry>T_CLASS_C</entry>
<entry>__CLASS__</entry>
<entry>
<link linkend="language.constants">constants</link>
(available since PHP 4.3.0)
</entry>
</row>
</tbody>
</tgroup>
</table>