From 1a938863a57c76ce3be76ebbf9dfc801daad92f5 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Thu, 13 Jun 2002 14:35:47 +0000 Subject: [PATCH] - 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 --- appendices/reserved.xml | 8 +++++++- appendices/tokens.xml | 20 +++++++++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/appendices/reserved.xml b/appendices/reserved.xml index 58f4575d3b..64269393c6 100755 --- a/appendices/reserved.xml +++ b/appendices/reserved.xml @@ -1,5 +1,5 @@ - + List of Reserved Words @@ -199,6 +199,12 @@ while + + __FUNCTION__ + + + __CLASS__ + diff --git a/appendices/tokens.xml b/appendices/tokens.xml index ef9e4a447d..25bbd2cdb3 100644 --- a/appendices/tokens.xml +++ b/appendices/tokens.xml @@ -1,5 +1,5 @@ - + List of Parser Tokens @@ -570,6 +570,24 @@ assignment operators + + T_XOR_EQUAL + ^= + assignment + operators + + + T_FUNC_C + __FUNCTION__ + constants, since + PHP 4.3.0 + + + T_CLASS_C + __CLASS__ + constants, since + PHP 4.3.0 +