mfischer Thu Jun 13 10:35:48 2002 EDT
Modified files:
/phpdoc/en/appendices reserved.xml tokens.xml
Log:
- At least mention the new __CLASS__ and __FUNCTION__ constants in the manual
somewhere ...
Index: phpdoc/en/appendices/reserved.xml
diff -u phpdoc/en/appendices/reserved.xml:1.22 phpdoc/en/appendices/reserved.xml:1.23
--- phpdoc/en/appendices/reserved.xml:1.22 Mon Jun 10 19:02:33 2002
+++ phpdoc/en/appendices/reserved.xml Thu Jun 13 10:35:47 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.22 $ -->
+<!-- $Revision: 1.23 $ -->
<appendix id="reserved">
<title>List of Reserved Words</title>
@@ -198,6 +198,12 @@
</entry>
<entry>
<link linkend="control-structures.while">while</link>
+ </entry>
+ <entry>
+ <constant>__FUNCTION__</constant>
+ </entry>
+ <entry>
+ <constant>__CLASS__</constant>
</entry>
</row>
</tbody>
Index: phpdoc/en/appendices/tokens.xml
diff -u phpdoc/en/appendices/tokens.xml:1.3 phpdoc/en/appendices/tokens.xml:1.4
--- phpdoc/en/appendices/tokens.xml:1.3 Mon May 27 06:04:02 2002
+++ phpdoc/en/appendices/tokens.xml Thu Jun 13 10:35:47 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<appendix id="tokens">
<title>List of Parser Tokens</title>
@@ -569,6 +569,24 @@
<entry>^=</entry>
<entry><link linkend="language.operators.assignment">assignment
operators</link></entry>
+ </row>
+ <row>
+ <entry>T_XOR_EQUAL</entry>
+ <entry>^=</entry>
+ <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>, since
+ <literal>PHP</literal> 4.3.0</entry>
+ </row>
+ <row>
+ <entry>T_CLASS_C</entry>
+ <entry>__CLASS__</entry>
+ <entry><link linkend="language.constants">constants</link>, since
+ <literal>PHP</literal> 4.3.0</entry>
</row>
</tbody>
</tgroup>