forked from JetBrains/phpstorm-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore_d.php
357 lines (314 loc) · 9.59 KB
/
Core_d.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<?php
// Start of Core v.5.3.6-13ubuntu3.2
/**
* Fatal run-time errors. These indicate errors that can not be
* recovered from, such as a memory allocation problem.
* Execution of the script is halted.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_ERROR', 1);
/**
* Catchable fatal error. It indicates that a probably dangerous error
* occured, but did not leave the Engine in an unstable state. If the error
* is not caught by a user defined handle (see also
* <b>set_error_handler</b>), the application aborts as it
* was an <b>E_ERROR</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_RECOVERABLE_ERROR', 4096);
/**
* Run-time warnings (non-fatal errors). Execution of the script is not
* halted.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_WARNING', 2);
/**
* Compile-time parse errors. Parse errors should only be generated by
* the parser.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_PARSE', 4);
/**
* Run-time notices. Indicate that the script encountered something that
* could indicate an error, but could also happen in the normal course of
* running a script.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_NOTICE', 8);
/**
* Enable to have PHP suggest changes
* to your code which will ensure the best interoperability
* and forward compatibility of your code.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_STRICT', 2048);
/**
* Run-time notices. Enable this to receive warnings about code
* that will not work in future versions.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_DEPRECATED', 8192);
/**
* Fatal errors that occur during PHP's initial startup. This is like an
* <b>E_ERROR</b>, except it is generated by the core of PHP.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_ERROR', 16);
/**
* Warnings (non-fatal errors) that occur during PHP's initial startup.
* This is like an <b>E_WARNING</b>, except it is generated
* by the core of PHP.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_WARNING', 32);
/**
* Fatal compile-time errors. This is like an <b>E_ERROR</b>,
* except it is generated by the Zend Scripting Engine.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_ERROR', 64);
/**
* Compile-time warnings (non-fatal errors). This is like an
* <b>E_WARNING</b>, except it is generated by the Zend
* Scripting Engine.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_WARNING', 128);
/**
* User-generated error message. This is like an
* <b>E_ERROR</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_ERROR', 256);
/**
* User-generated warning message. This is like an
* <b>E_WARNING</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_WARNING', 512);
/**
* User-generated notice message. This is like an
* <b>E_NOTICE</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_NOTICE', 1024);
/**
* User-generated warning message. This is like an
* <b>E_DEPRECATED</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_DEPRECATED', 16384);
/**
* All errors and warnings, as supported, except of level
* <b>E_STRICT</b> prior to PHP 5.4.0.
* @link http://php.net/manual/en/errorfunc.constants.php
*/
define ('E_ALL', 30719);
define ('DEBUG_BACKTRACE_PROVIDE_OBJECT', 1);
define ('DEBUG_BACKTRACE_IGNORE_ARGS', 2);
define ('S_MEMORY', 1);
define ('S_VARS', 4);
define ('S_FILES', 8);
define ('S_INCLUDE', 16);
define ('S_SQL', 32);
define ('S_EXECUTOR', 64);
define ('S_MAIL', 128);
define ('S_SESSION', 256);
define ('S_MISC', 2);
define ('S_INTERNAL', 536870912);
define ('S_ALL', 511);
/**
* system is unusable
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_EMERG', 0);
/**
* action must be taken immediately
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_ALERT', 1);
/**
* critical conditions
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_CRIT', 2);
/**
* error conditions
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_ERR', 3);
/**
* warning conditions
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_WARNING', 4);
/**
* normal, but significant, condition
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_NOTICE', 5);
/**
* informational message
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_INFO', 6);
/**
* debug-level message
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_DEBUG', 7);
/**
* kernel messages
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_KERN', 0);
/**
* generic user-level messages
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_USER', 8);
/**
* mail subsystem
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_MAIL', 16);
/**
* other system daemons
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_DAEMON', 24);
/**
* security/authorization messages (use <b>LOG_AUTHPRIV</b> instead
* in systems where that constant is defined)
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_AUTH', 32);
/**
* messages generated internally by syslogd
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_SYSLOG', 40);
/**
* line printer subsystem
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_LPR', 48);
/**
* USENET news subsystem
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_NEWS', 56);
/**
* UUCP subsystem
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_UUCP', 64);
/**
* clock daemon (cron and at)
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_CRON', 72);
/**
* security/authorization messages (private)
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_AUTHPRIV', 80);
define ('LOG_LOCAL0', 128);
define ('LOG_LOCAL1', 136);
define ('LOG_LOCAL2', 144);
define ('LOG_LOCAL3', 152);
define ('LOG_LOCAL4', 160);
define ('LOG_LOCAL5', 168);
define ('LOG_LOCAL6', 176);
define ('LOG_LOCAL7', 184);
/**
* include PID with each message
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_PID', 1);
/**
* if there is an error while sending data to the system logger,
* write directly to the system console
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_CONS', 2);
/**
* (default) delay opening the connection until the first
* message is logged
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_ODELAY', 4);
/**
* open the connection to the logger immediately
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_NDELAY', 8);
define ('LOG_NOWAIT', 16);
/**
* print log message also to standard error
* @link http://php.net/manual/en/network.constants.php
*/
define ('LOG_PERROR', 32);
define ('true', true, true);
define ('false', false, true);
define ('null', null, true);
define ('ZEND_THREAD_SAFE', false);
define ('ZEND_DEBUG_BUILD', false);
define ('PHP_WINDOWS_VERSION_BUILD', 0);
define ('PHP_WINDOWS_VERSION_MAJOR', 0);
define ('PHP_WINDOWS_VERSION_MINOR', 0);
define ('PHP_WINDOWS_VERSION_PLATFORM', 0);
define ('PHP_WINDOWS_VERSION_PRODUCTTYPE', 0);
define ('PHP_WINDOWS_VERSION_SP_MAJOR', 0);
define ('PHP_WINDOWS_VERSION_SP_MINOR', 0);
define ('PHP_WINDOWS_VERSION_SUITEMASK', 0);
define ('PHP_VERSION', "5.3.6-13ubuntu3.2");
define ('PHP_MAJOR_VERSION', 5);
define ('PHP_MINOR_VERSION', 3);
define ('PHP_RELEASE_VERSION', 6);
define ('PHP_EXTRA_VERSION', "-13ubuntu3.2");
define ('PHP_VERSION_ID', 50306);
define ('PHP_ZTS', 0);
define ('PHP_DEBUG', 0);
define ('PHP_OS', "Linux");
define ('PHP_SAPI', "cli");
define ('DEFAULT_INCLUDE_PATH', ".:/usr/share/php:/usr/share/pear");
define ('PEAR_INSTALL_DIR', "/usr/share/php");
define ('PEAR_EXTENSION_DIR', "/usr/lib/php5/20090626");
define ('PHP_EXTENSION_DIR', "/usr/lib/php5/20090626");
define ('PHP_PREFIX', "/usr");
define ('PHP_BINDIR', "/usr/bin");
define ('PHP_LIBDIR', "/usr/lib/php5");
define ('PHP_DATADIR', "${prefix}/share");
define ('PHP_SYSCONFDIR', "/etc");
define ('PHP_LOCALSTATEDIR', "/var");
define ('PHP_CONFIG_FILE_PATH', "/etc/php5/cli");
define ('PHP_CONFIG_FILE_SCAN_DIR', "/etc/php5/cli/conf.d");
define ('PHP_SHLIB_SUFFIX', "so");
define ('PHP_EOL', "\n");
define ('SUHOSIN_PATCH', 1);
define ('SUHOSIN_PATCH_VERSION', "0.9.10");
define ('PHP_MAXPATHLEN', 4096);
define ('PHP_INT_MAX', 9223372036854775807);
define ('PHP_INT_SIZE', 8);
define ('ZEND_MULTIBYTE', 0);
define ('PHP_OUTPUT_HANDLER_START', 1);
define ('PHP_OUTPUT_HANDLER_CONT', 2);
define ('PHP_OUTPUT_HANDLER_END', 4);
define ('UPLOAD_ERR_OK', 0);
define ('UPLOAD_ERR_INI_SIZE', 1);
define ('UPLOAD_ERR_FORM_SIZE', 2);
define ('UPLOAD_ERR_PARTIAL', 3);
define ('UPLOAD_ERR_NO_FILE', 4);
define ('UPLOAD_ERR_NO_TMP_DIR', 6);
define ('UPLOAD_ERR_CANT_WRITE', 7);
define ('UPLOAD_ERR_EXTENSION', 8);
define('STDIN', fopen('php://stdin', 'r'));
define('STDOUT', fopen('php://stdout', 'w'));
define('STDERR', fopen('php://stderr', 'w'));
// End of Core v.5.3.6-13ubuntu3.2
?>