1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) ZEND_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
37 #define PHP_DISPLAY_ERRORS_STDOUT 1
38 #define PHP_DISPLAY_ERRORS_STDERR 2
39
40
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 zend_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 zend_long serialize_precision;
68
69 zend_long memory_limit;
70 zend_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 zend_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 zend_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 char *input_encoding;
100 char *internal_encoding;
101 char *output_encoding;
102
103 arg_separators arg_separator;
104
105 char *variables_order;
106
107 HashTable rfc1867_protected_variables;
108
109 short connection_status;
110 short ignore_user_abort;
111
112 unsigned char header_is_being_sent;
113
114 zend_llist tick_functions;
115
116 zval http_globals[6];
117
118 zend_bool expose_php;
119
120 zend_bool register_argc_argv;
121 zend_bool auto_globals_jit;
122
123 char *docref_root;
124 char *docref_ext;
125
126 zend_bool html_errors;
127 zend_bool xmlrpc_errors;
128
129 zend_long xmlrpc_error_number;
130
131 zend_bool activated_auto_globals[8];
132
133 zend_bool modules_activated;
134 zend_bool file_uploads;
135 zend_bool during_request_startup;
136 zend_bool allow_url_fopen;
137 zend_bool enable_post_data_reading;
138 zend_bool report_zend_debug;
139
140 int last_error_type;
141 char *last_error_message;
142 char *last_error_file;
143 int last_error_lineno;
144
145 char *php_sys_temp_dir;
146
147 char *disable_functions;
148 char *disable_classes;
149 zend_bool allow_url_include;
150 zend_bool exit_on_timeout;
151 #ifdef PHP_WIN32
152 zend_bool com_initialized;
153 #endif
154 zend_long max_input_nesting_level;
155 zend_long max_input_vars;
156 zend_bool in_user_include;
157
158 char *user_ini_filename;
159 zend_long user_ini_cache_ttl;
160
161 char *request_order;
162
163 zend_bool mail_x_header;
164 char *mail_log;
165
166 zend_bool in_error_log;
167
168 #ifdef PHP_WIN32
169 zend_bool windows_show_crt_warning;
170 #endif
171 };
172
173
174 #endif
175
176
177
178
179
180
181