From add3853e6500a544e97855e7709d5c3c35e97e2c Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Wed, 9 Sep 2009 07:37:10 +0000 Subject: [PATCH] Document PATH_INFO (at least, the basics). Partially addresses bug #46820, although more information on the history of PATH_INFO is needed. And ORIG_PATH_INFO remains to be documented. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288189 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/predefined/variables/server.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/language/predefined/variables/server.xml b/language/predefined/variables/server.xml index dab4728c29..69f62f7924 100644 --- a/language/predefined/variables/server.xml +++ b/language/predefined/variables/server.xml @@ -471,6 +471,21 @@ + + 'PATH_INFO' + + + Contains any client-provided pathname information trailing the + actual script filename but preceding the query string, if + available. For instance, if the current script was accessed via + the + URL http://www.example.com/php/path_info.php/some/stuff?foo=bar, + then $_SERVER['PATH_INFO'] would + contain /some/stuff. + + + +