From 3105d42987070208e3905fb0efe3d011f6df7505 Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Tue, 22 May 2001 23:18:54 +0000 Subject: [PATCH] Noted that inside double-quoted strings another syntax is valid. Minor XML-improvements. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48209 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/language/types.xml b/language/types.xml index 1bbcd478a6..593a444842 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1045,14 +1045,22 @@ $error_descriptions[8] = "This is just an informal notice"; And, if these arguments don't help: this syntax is simply deprecated, and it might stop working some day. - + When you turn error_reporting to E_ALL, you will see that PHP generates warnings whenever this construct - is used. (put the line error_reporting(E_ALL); + is used. This is also valid for other deprecated 'features'. + (put the line error_reporting(E_ALL); in your script) + + + + Inside a double-quoted string, an other syntax + is valid. See variable parsing in strings for more details. +