From 06269d6402db2f3cdfb69a498abe867b4662241d Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Sun, 13 Apr 2008 23:46:26 +0000 Subject: [PATCH] Fixed bug#42516 (__FILE__ resolves symlinks - not mentioned in manual) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@257406 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/constants.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/constants.xml b/language/constants.xml index 40be0304a8..e3ab6b4a17 100644 --- a/language/constants.xml +++ b/language/constants.xml @@ -1,5 +1,5 @@ - + Constants @@ -197,7 +197,7 @@ echo Constant; // outputs "Constant" and issues a notice. The full path and filename of the file. If used inside an include, the name of the included file is returned. Since PHP 4.0.2, __FILE__ always contains an - absolute path whereas in older versions it contained relative path + absolute path with symlinks resolved whereas in older versions it contained relative path under some circumstances.