mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- At least mention the new __CLASS__ and __FUNCTION__ constants in the manual
somewhere ... git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@85579 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
29654a41ef
commit
1a938863a5
2 changed files with 26 additions and 2 deletions
|
@ -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>
|
||||
|
@ -199,6 +199,12 @@
|
|||
<entry>
|
||||
<link linkend="control-structures.while">while</link>
|
||||
</entry>
|
||||
<entry>
|
||||
<constant>__FUNCTION__</constant>
|
||||
</entry>
|
||||
<entry>
|
||||
<constant>__CLASS__</constant>
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
|
|
|
@ -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>
|
||||
|
@ -570,6 +570,24 @@
|
|||
<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>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue