xref: /PHP-5.5/main/php_globals.h (revision 73c1be26)
1 /*
2    +----------------------------------------------------------------------+
3    | PHP Version 5                                                        |
4    +----------------------------------------------------------------------+
5    | Copyright (c) 1997-2015 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 	char *sys_temp_dir;
89 
90 	char *upload_tmp_dir;
91 	long upload_max_filesize;
92 
93 	char *error_append_string;
94 	char *error_prepend_string;
95 
96 	char *auto_prepend_file;
97 	char *auto_append_file;
98 
99 	arg_separators arg_separator;
100 
101 	char *variables_order;
102 
103 	HashTable rfc1867_protected_variables;
104 
105 	short connection_status;
106 	short ignore_user_abort;
107 
108 	unsigned char header_is_being_sent;
109 
110 	zend_llist tick_functions;
111 
112 	zval *http_globals[6];
113 
114 	zend_bool expose_php;
115 
116 	zend_bool register_argc_argv;
117 	zend_bool auto_globals_jit;
118 
119 	char *docref_root;
120 	char *docref_ext;
121 
122 	zend_bool html_errors;
123 	zend_bool xmlrpc_errors;
124 
125 	long xmlrpc_error_number;
126 
127 	zend_bool activated_auto_globals[8];
128 
129 	zend_bool modules_activated;
130 	zend_bool file_uploads;
131 	zend_bool during_request_startup;
132 	zend_bool allow_url_fopen;
133 	zend_bool enable_post_data_reading;
134 	zend_bool always_populate_raw_post_data;
135 	zend_bool report_zend_debug;
136 
137 	int last_error_type;
138 	char *last_error_message;
139 	char *last_error_file;
140 	int  last_error_lineno;
141 
142 	char *disable_functions;
143 	char *disable_classes;
144 	zend_bool allow_url_include;
145 	zend_bool exit_on_timeout;
146 #ifdef PHP_WIN32
147 	zend_bool com_initialized;
148 #endif
149 	long max_input_nesting_level;
150 	long max_input_vars;
151 	zend_bool in_user_include;
152 
153 	char *user_ini_filename;
154 	long user_ini_cache_ttl;
155 
156 	char *request_order;
157 
158 	zend_bool mail_x_header;
159 	char *mail_log;
160 
161 	zend_bool in_error_log;
162 
163 #ifdef PHP_WIN32
164 	zend_bool windows_show_crt_warning;
165 #endif
166 };
167 
168 
169 #endif /* PHP_GLOBALS_H */
170 
171 /*
172  * Local variables:
173  * tab-width: 4
174  * c-basic-offset: 4
175  * End:
176  */
177