diff options
| author | Zeev Suraski <zeev@php.net> | 2003-03-02 10:19:15 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2003-03-02 10:19:15 +0000 |
| commit | 4e55747a2b0fd481018bfd390e2aa50569f73c41 (patch) | |
| tree | 999911ceac279ed56478548a190ffd165f7ca206 /main/php_globals.h | |
| parent | f7b7800479ba43c2361ce2be981b7a59a0c9c1e1 (diff) | |
| download | php-git-4e55747a2b0fd481018bfd390e2aa50569f73c41.tar.gz | |
Add JIT initialization for _SERVER and _ENV
(it's less important for the others, even though it should be fairly
easy now too)
Diffstat (limited to 'main/php_globals.h')
| -rw-r--r-- | main/php_globals.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index 122fea904b..ddb940aa62 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -40,6 +40,7 @@ extern ZEND_API struct _php_core_globals core_globals; #define TRACK_VARS_SERVER 3 #define TRACK_VARS_ENV 4 #define TRACK_VARS_FILES 5 +#define TRACK_VARS_REQUEST 6 struct _php_tick_function_entry; @@ -118,6 +119,7 @@ struct _php_core_globals { zend_bool expose_php; zend_bool register_globals; + zend_bool register_long_arrays; zend_bool register_argc_argv; zend_bool y2k_compliance; @@ -130,17 +132,13 @@ struct _php_core_globals { long xmlrpc_error_number; + zend_bool activated_auto_globals[8]; zend_bool modules_activated; - zend_bool file_uploads; - zend_bool during_request_startup; - zend_bool allow_url_fopen; - zend_bool always_populate_raw_post_data; - zend_bool report_zend_debug; }; |
