summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-02-19 20:12:26 +0000
committerZeev Suraski <zeev@php.net>2000-02-19 20:12:26 +0000
commit739bdec582f13a95379f77cf143a23d089d2bba0 (patch)
tree5d103607b4cf2014b6fc36c13f9f8bbd9b80d3b1 /ext
parent4f8ae75f4ff028e95a35511fb70caeb9a0419c6f (diff)
downloadphp-git-739bdec582f13a95379f77cf143a23d089d2bba0.tar.gz
Worked on beautifying rfc1867.c a bit
@- Introduced $HTTP_POST_FILES[], that contains information about files uploaded @ through HTTP upload (Zeev)
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/info.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c
index 2110753d97..bca646f2c9 100644
--- a/ext/standard/info.c
+++ b/ext/standard/info.c
@@ -241,6 +241,7 @@ PHPAPI void php_print_info(int flag)
}
php_print_gpcse_array("HTTP_GET_VARS", sizeof("HTTP_GET_VARS")-1 ELS_CC);
php_print_gpcse_array("HTTP_POST_VARS", sizeof("HTTP_POST_VARS")-1 ELS_CC);
+ php_print_gpcse_array("HTTP_POST_FILES", sizeof("HTTP_POST_FILES")-1 ELS_CC);
php_print_gpcse_array("HTTP_COOKIE_VARS", sizeof("HTTP_COOKIE_VARS")-1 ELS_CC);
php_print_gpcse_array("HTTP_SERVER_VARS", sizeof("HTTP_SERVER_VARS")-1 ELS_CC);
php_print_gpcse_array("HTTP_ENV_VARS", sizeof("HTTP_ENV_VARS")-1 ELS_CC);