1 /* 2 +----------------------------------------------------------------------+ 3 | PHP Version 5 | 4 +----------------------------------------------------------------------+ 5 | Copyright (c) 1997-2014 The PHP Group | 6 +----------------------------------------------------------------------+ 7 | This source file is subject to version 3.01 of the PHP license, | 8 | that is bundled with this package in the file LICENSE, and is | 9 | available through the world-wide-web at the following url: | 10 | http://www.php.net/license/3_01.txt | 11 | If you did not receive a copy of the PHP license and are unable to | 12 | obtain it through the world-wide-web, please send a note to | 13 | license@php.net so we can mail you a copy immediately. | 14 +----------------------------------------------------------------------+ 15 | Author: Zeev Suraski <zeev@zend.com> | 16 +----------------------------------------------------------------------+ 17 */ 18 19 /* $Id$ */ 20 21 #ifndef PHP_GLOBALS_H 22 #define PHP_GLOBALS_H 23 24 #include "zend_globals.h" 25 26 typedef struct _php_core_globals php_core_globals; 27 28 #ifdef ZTS 29 # define PG(v) TSRMG(core_globals_id, php_core_globals *, v) 30 extern PHPAPI int core_globals_id; 31 #else 32 # define PG(v) (core_globals.v) 33 extern ZEND_API struct _php_core_globals core_globals; 34 #endif 35 36 /* Error display modes */ 37 #define PHP_DISPLAY_ERRORS_STDOUT 1 38 #define PHP_DISPLAY_ERRORS_STDERR 2 39 40 /* Track vars */ 41 #define TRACK_VARS_POST 0 42 #define TRACK_VARS_GET 1 43 #define TRACK_VARS_COOKIE 2 44 #define TRACK_VARS_SERVER 3 45 #define TRACK_VARS_ENV 4 46 #define TRACK_VARS_FILES 5 47 #define TRACK_VARS_REQUEST 6 48 49 struct _php_tick_function_entry; 50 51 typedef struct _arg_separators { 52 char *output; 53 char *input; 54 } arg_separators; 55 56 struct _php_core_globals { 57 zend_bool implicit_flush; 58 59 long output_buffering; 60 61 zend_bool sql_safe_mode; 62 zend_bool enable_dl; 63 64 char *output_handler; 65 66 char *unserialize_callback_func; 67 long serialize_precision; 68 69 long memory_limit; 70 long max_input_time; 71 72 zend_bool track_errors; 73 zend_bool display_errors; 74 zend_bool display_startup_errors; 75 zend_bool log_errors; 76 long log_errors_max_len; 77 zend_bool ignore_repeated_errors; 78 zend_bool ignore_repeated_source; 79 zend_bool report_memleaks; 80 char *error_log; 81 82 char *doc_root; 83 char *user_dir; 84 char *include_path; 85 char *open_basedir; 86 char *extension_dir; 87 char *php_binary; 88 89 char *upload_tmp_dir; 90 long upload_max_filesize; 91 92 char *error_append_string; 93 char *error_prepend_string; 94 95 char *auto_prepend_file; 96 char *auto_append_file; 97 98 arg_separators arg_separator; 99 100 char *variables_order; 101 102 HashTable rfc1867_protected_variables; 103 104 short connection_status; 105 short ignore_user_abort; 106 107 unsigned char header_is_being_sent; 108 109 zend_llist tick_functions; 110 111 zval *http_globals[6]; 112 113 zend_bool expose_php; 114 115 zend_bool register_argc_argv; 116 zend_bool auto_globals_jit; 117 118 char *docref_root; 119 char *docref_ext; 120 121 zend_bool html_errors; 122 zend_bool xmlrpc_errors; 123 124 long xmlrpc_error_number; 125 126 zend_bool activated_auto_globals[8]; 127 128 zend_bool modules_activated; 129 zend_bool file_uploads; 130 zend_bool during_request_startup; 131 zend_bool allow_url_fopen; 132 zend_bool enable_post_data_reading; 133 zend_bool always_populate_raw_post_data; 134 zend_bool report_zend_debug; 135 136 int last_error_type; 137 char *last_error_message; 138 char *last_error_file; 139 int last_error_lineno; 140 141 char *disable_functions; 142 char *disable_classes; 143 zend_bool allow_url_include; 144 zend_bool exit_on_timeout; 145 #ifdef PHP_WIN32 146 zend_bool com_initialized; 147 #endif 148 long max_input_nesting_level; 149 long max_input_vars; 150 zend_bool in_user_include; 151 152 char *user_ini_filename; 153 long user_ini_cache_ttl; 154 155 char *request_order; 156 157 zend_bool mail_x_header; 158 char *mail_log; 159 160 zend_bool in_error_log; 161 162 #ifdef PHP_WIN32 163 zend_bool windows_show_crt_warning; 164 #endif 165 }; 166 167 168 #endif /* PHP_GLOBALS_H */ 169 170 /* 171 * Local variables: 172 * tab-width: 4 173 * c-basic-offset: 4 174 * End: 175 */ 176