diff options
author | alex <> | 2005-11-21 13:02:49 +0000 |
---|---|---|
committer | alex <> | 2005-11-21 13:02:49 +0000 |
commit | 35c6cb9ba3eb5e77f4eb4f1a93d8569d4b291236 (patch) | |
tree | a9b0b31b845f5b18d142c4562d4a491ccf6c9b82 /framework/Web/THttpRequest.php | |
parent | 61abe4f563bfa4c42ebcebee4078d6dcf762fa17 (diff) |
Added unit tests for THttpRequest. Needs some more work...
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r-- | framework/Web/THttpRequest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php index 59e65a7e..bd61765c 100644 --- a/framework/Web/THttpRequest.php +++ b/framework/Web/THttpRequest.php @@ -79,6 +79,7 @@ class THttpRequest extends TComponent implements IModule // Info about server variables:
// PHP_SELF contains real URI (w/ path info, w/o query string)
// SCRIPT_NAME is the real URI for the requested script (w/o path info and query string)
+ // QUERY_STRING is the string following the '?' in the ur (eg the a=x part in http://foo/bar?a=x)
// REQUEST_URI contains the URI part entered in the browser address bar
// SCRIPT_FILENAME is the file path to the executing script
if(isset($_SERVER['REQUEST_URI']))
|