|
2 | 2 |
|
3 | 3 | // Start of Core v.5.3.6-13ubuntu3.2
|
4 | 4 |
|
5 |
| - |
6 | 5 | /**
|
7 | 6 | * Fatal run-time errors. These indicate errors that can not be
|
8 | 7 | * recovered from, such as a memory allocation problem.
|
9 | 8 | * Execution of the script is halted.
|
10 | 9 | * @link https://php.net/manual/en/errorfunc.constants.php
|
11 | 10 | */
|
12 |
| -define ('E_ERROR', 1); |
| 11 | +define('E_ERROR', 1); |
13 | 12 |
|
14 | 13 | /**
|
15 | 14 | * Catchable fatal error. It indicates that a probably dangerous error
|
|
19 | 18 | * was an <b>E_ERROR</b>.
|
20 | 19 | * @link https://php.net/manual/en/errorfunc.constants.php
|
21 | 20 | */
|
22 |
| -define ('E_RECOVERABLE_ERROR', 4096); |
| 21 | +define('E_RECOVERABLE_ERROR', 4096); |
23 | 22 |
|
24 | 23 | /**
|
25 | 24 | * Run-time warnings (non-fatal errors). Execution of the script is not
|
26 | 25 | * halted.
|
27 | 26 | * @link https://php.net/manual/en/errorfunc.constants.php
|
28 | 27 | */
|
29 |
| -define ('E_WARNING', 2); |
| 28 | +define('E_WARNING', 2); |
30 | 29 |
|
31 | 30 | /**
|
32 | 31 | * Compile-time parse errors. Parse errors should only be generated by
|
33 | 32 | * the parser.
|
34 | 33 | * @link https://php.net/manual/en/errorfunc.constants.php
|
35 | 34 | */
|
36 |
| -define ('E_PARSE', 4); |
| 35 | +define('E_PARSE', 4); |
37 | 36 |
|
38 | 37 | /**
|
39 | 38 | * Run-time notices. Indicate that the script encountered something that
|
40 | 39 | * could indicate an error, but could also happen in the normal course of
|
41 | 40 | * running a script.
|
42 | 41 | * @link https://php.net/manual/en/errorfunc.constants.php
|
43 | 42 | */
|
44 |
| -define ('E_NOTICE', 8); |
| 43 | +define('E_NOTICE', 8); |
45 | 44 |
|
46 | 45 | /**
|
47 | 46 | * Enable to have PHP suggest changes
|
48 | 47 | * to your code which will ensure the best interoperability
|
49 | 48 | * and forward compatibility of your code.
|
50 | 49 | * @link https://php.net/manual/en/errorfunc.constants.php
|
51 | 50 | */
|
52 |
| -define ('E_STRICT', 2048); |
| 51 | +define('E_STRICT', 2048); |
53 | 52 |
|
54 | 53 | /**
|
55 | 54 | * Run-time notices. Enable this to receive warnings about code
|
56 | 55 | * that will not work in future versions.
|
57 | 56 | * @link https://php.net/manual/en/errorfunc.constants.php
|
58 | 57 | */
|
59 |
| -define ('E_DEPRECATED', 8192); |
| 58 | +define('E_DEPRECATED', 8192); |
60 | 59 |
|
61 | 60 | /**
|
62 | 61 | * Fatal errors that occur during PHP's initial startup. This is like an
|
63 | 62 | * <b>E_ERROR</b>, except it is generated by the core of PHP.
|
64 | 63 | * @link https://php.net/manual/en/errorfunc.constants.php
|
65 | 64 | */
|
66 |
| -define ('E_CORE_ERROR', 16); |
| 65 | +define('E_CORE_ERROR', 16); |
67 | 66 |
|
68 | 67 | /**
|
69 | 68 | * Warnings (non-fatal errors) that occur during PHP's initial startup.
|
70 | 69 | * This is like an <b>E_WARNING</b>, except it is generated
|
71 | 70 | * by the core of PHP.
|
72 | 71 | * @link https://php.net/manual/en/errorfunc.constants.php
|
73 | 72 | */
|
74 |
| -define ('E_CORE_WARNING', 32); |
| 73 | +define('E_CORE_WARNING', 32); |
75 | 74 |
|
76 | 75 | /**
|
77 | 76 | * Fatal compile-time errors. This is like an <b>E_ERROR</b>,
|
78 | 77 | * except it is generated by the Zend Scripting Engine.
|
79 | 78 | * @link https://php.net/manual/en/errorfunc.constants.php
|
80 | 79 | */
|
81 |
| -define ('E_COMPILE_ERROR', 64); |
| 80 | +define('E_COMPILE_ERROR', 64); |
82 | 81 |
|
83 | 82 | /**
|
84 | 83 | * Compile-time warnings (non-fatal errors). This is like an
|
85 | 84 | * <b>E_WARNING</b>, except it is generated by the Zend
|
86 | 85 | * Scripting Engine.
|
87 | 86 | * @link https://php.net/manual/en/errorfunc.constants.php
|
88 | 87 | */
|
89 |
| -define ('E_COMPILE_WARNING', 128); |
| 88 | +define('E_COMPILE_WARNING', 128); |
90 | 89 |
|
91 | 90 | /**
|
92 | 91 | * User-generated error message. This is like an
|
93 | 92 | * <b>E_ERROR</b>, except it is generated in PHP code by
|
94 | 93 | * using the PHP function <b>trigger_error</b>.
|
95 | 94 | * @link https://php.net/manual/en/errorfunc.constants.php
|
96 | 95 | */
|
97 |
| -define ('E_USER_ERROR', 256); |
| 96 | +define('E_USER_ERROR', 256); |
98 | 97 |
|
99 | 98 | /**
|
100 | 99 | * User-generated warning message. This is like an
|
101 | 100 | * <b>E_WARNING</b>, except it is generated in PHP code by
|
102 | 101 | * using the PHP function <b>trigger_error</b>.
|
103 | 102 | * @link https://php.net/manual/en/errorfunc.constants.php
|
104 | 103 | */
|
105 |
| -define ('E_USER_WARNING', 512); |
| 104 | +define('E_USER_WARNING', 512); |
106 | 105 |
|
107 | 106 | /**
|
108 | 107 | * User-generated notice message. This is like an
|
109 | 108 | * <b>E_NOTICE</b>, except it is generated in PHP code by
|
110 | 109 | * using the PHP function <b>trigger_error</b>.
|
111 | 110 | * @link https://php.net/manual/en/errorfunc.constants.php
|
112 | 111 | */
|
113 |
| -define ('E_USER_NOTICE', 1024); |
| 112 | +define('E_USER_NOTICE', 1024); |
114 | 113 |
|
115 | 114 | /**
|
116 | 115 | * User-generated warning message. This is like an
|
117 | 116 | * <b>E_DEPRECATED</b>, except it is generated in PHP code by
|
118 | 117 | * using the PHP function <b>trigger_error</b>.
|
119 | 118 | * @link https://php.net/manual/en/errorfunc.constants.php
|
120 | 119 | */
|
121 |
| -define ('E_USER_DEPRECATED', 16384); |
| 120 | +define('E_USER_DEPRECATED', 16384); |
122 | 121 |
|
123 | 122 | /**
|
124 | 123 | * All errors and warnings, as supported, except of level
|
|
127 | 126 | * 30719 in PHP 5.3.x, 6143 in PHP 5.2.x, 2047 previously
|
128 | 127 | * @link https://php.net/manual/en/errorfunc.constants.php
|
129 | 128 | */
|
130 |
| -define ('E_ALL', 32767); |
131 |
| -define ('DEBUG_BACKTRACE_PROVIDE_OBJECT', 1); |
132 |
| -define ('DEBUG_BACKTRACE_IGNORE_ARGS', 2); |
133 |
| -define ('S_MEMORY', 1); |
134 |
| -define ('S_VARS', 4); |
135 |
| -define ('S_FILES', 8); |
136 |
| -define ('S_INCLUDE', 16); |
137 |
| -define ('S_SQL', 32); |
138 |
| -define ('S_EXECUTOR', 64); |
139 |
| -define ('S_MAIL', 128); |
140 |
| -define ('S_SESSION', 256); |
141 |
| -define ('S_MISC', 2); |
142 |
| -define ('S_INTERNAL', 536870912); |
143 |
| -define ('S_ALL', 511); |
| 129 | +define('E_ALL', 32767); |
| 130 | +define('DEBUG_BACKTRACE_PROVIDE_OBJECT', 1); |
| 131 | +define('DEBUG_BACKTRACE_IGNORE_ARGS', 2); |
| 132 | +define('S_MEMORY', 1); |
| 133 | +define('S_VARS', 4); |
| 134 | +define('S_FILES', 8); |
| 135 | +define('S_INCLUDE', 16); |
| 136 | +define('S_SQL', 32); |
| 137 | +define('S_EXECUTOR', 64); |
| 138 | +define('S_MAIL', 128); |
| 139 | +define('S_SESSION', 256); |
| 140 | +define('S_MISC', 2); |
| 141 | +define('S_INTERNAL', 536870912); |
| 142 | +define('S_ALL', 511); |
144 | 143 |
|
145 |
| -define ('true', (bool)1, true); |
146 |
| -define ('false', (bool)0, true); |
147 |
| -define ('null', null, true); |
148 |
| -define ('ZEND_THREAD_SAFE', false); |
149 |
| -define ('ZEND_DEBUG_BUILD', false); |
150 |
| -define ('PHP_WINDOWS_VERSION_BUILD', 0); |
151 |
| -define ('PHP_WINDOWS_VERSION_MAJOR', 0); |
152 |
| -define ('PHP_WINDOWS_VERSION_MINOR', 0); |
153 |
| -define ('PHP_WINDOWS_VERSION_PLATFORM', 0); |
154 |
| -define ('PHP_WINDOWS_VERSION_PRODUCTTYPE', 0); |
155 |
| -define ('PHP_WINDOWS_VERSION_SP_MAJOR', 0); |
156 |
| -define ('PHP_WINDOWS_VERSION_SP_MINOR', 0); |
157 |
| -define ('PHP_WINDOWS_VERSION_SUITEMASK', 0); |
158 |
| -define ('PHP_WINDOWS_NT_DOMAIN_CONTROLLER', 2); |
159 |
| -define ('PHP_WINDOWS_NT_SERVER', 3); |
160 |
| -define ('PHP_WINDOWS_NT_WORKSTATION', 1); |
| 144 | +define('true', (bool)1, true); |
| 145 | +define('false', (bool)0, true); |
| 146 | +define('null', null, true); |
| 147 | +define('ZEND_THREAD_SAFE', false); |
| 148 | +define('ZEND_DEBUG_BUILD', false); |
| 149 | +define('PHP_WINDOWS_VERSION_BUILD', 0); |
| 150 | +define('PHP_WINDOWS_VERSION_MAJOR', 0); |
| 151 | +define('PHP_WINDOWS_VERSION_MINOR', 0); |
| 152 | +define('PHP_WINDOWS_VERSION_PLATFORM', 0); |
| 153 | +define('PHP_WINDOWS_VERSION_PRODUCTTYPE', 0); |
| 154 | +define('PHP_WINDOWS_VERSION_SP_MAJOR', 0); |
| 155 | +define('PHP_WINDOWS_VERSION_SP_MINOR', 0); |
| 156 | +define('PHP_WINDOWS_VERSION_SUITEMASK', 0); |
| 157 | +define('PHP_WINDOWS_NT_DOMAIN_CONTROLLER', 2); |
| 158 | +define('PHP_WINDOWS_NT_SERVER', 3); |
| 159 | +define('PHP_WINDOWS_NT_WORKSTATION', 1); |
161 | 160 | /**
|
162 | 161 | * @since 7.4
|
163 | 162 | */
|
164 |
| -define ('PHP_WINDOWS_EVENT_CTRL_C', 0); |
| 163 | +define('PHP_WINDOWS_EVENT_CTRL_C', 0); |
165 | 164 | /**
|
166 | 165 | * @since 7.4
|
167 | 166 | */
|
168 |
| -define ('PHP_WINDOWS_EVENT_CTRL_BREAK', 1); |
169 |
| -define ('PHP_VERSION', "5.3.6-13ubuntu3.2"); |
170 |
| -define ('PHP_MAJOR_VERSION', 5); |
171 |
| -define ('PHP_MINOR_VERSION', 3); |
172 |
| -define ('PHP_RELEASE_VERSION', 6); |
173 |
| -define ('PHP_EXTRA_VERSION', "-13ubuntu3.2"); |
174 |
| -define ('PHP_VERSION_ID', 50306); |
175 |
| -define ('PHP_ZTS', 0); |
176 |
| -define ('PHP_DEBUG', 0); |
177 |
| -define ('PHP_OS', "Linux"); |
| 167 | +define('PHP_WINDOWS_EVENT_CTRL_BREAK', 1); |
| 168 | +define('PHP_VERSION', "5.3.6-13ubuntu3.2"); |
| 169 | +define('PHP_MAJOR_VERSION', 5); |
| 170 | +define('PHP_MINOR_VERSION', 3); |
| 171 | +define('PHP_RELEASE_VERSION', 6); |
| 172 | +define('PHP_EXTRA_VERSION', "-13ubuntu3.2"); |
| 173 | +define('PHP_VERSION_ID', 50306); |
| 174 | +define('PHP_ZTS', 0); |
| 175 | +define('PHP_DEBUG', 0); |
| 176 | +define('PHP_OS', "Linux"); |
178 | 177 | /**
|
179 | 178 | * The operating system family PHP was built for. Either of 'Windows', 'BSD', 'Darwin', 'Solaris', 'Linux' or 'Unknown'. Available as of PHP 7.2.0.
|
180 | 179 | * @since 7.2
|
181 | 180 | */
|
182 |
| -define ('PHP_OS_FAMILY', "Linux"); |
183 |
| -define ('PHP_SAPI', "cli"); |
| 181 | +define('PHP_OS_FAMILY', "Linux"); |
| 182 | +define('PHP_SAPI', "cli"); |
184 | 183 | /**
|
185 | 184 | * @since 7.4
|
186 | 185 | */
|
187 |
| -define ('PHP_CLI_PROCESS_TITLE', 1); |
188 |
| -define ('DEFAULT_INCLUDE_PATH', ".:/usr/share/php:/usr/share/pear"); |
189 |
| -define ('PEAR_INSTALL_DIR', "/usr/share/php"); |
190 |
| -define ('PEAR_EXTENSION_DIR', "/usr/lib/php5/20090626"); |
191 |
| -define ('PHP_EXTENSION_DIR', "/usr/lib/php5/20090626"); |
| 186 | +define('PHP_CLI_PROCESS_TITLE', 1); |
| 187 | +define('DEFAULT_INCLUDE_PATH', ".:/usr/share/php:/usr/share/pear"); |
| 188 | +define('PEAR_INSTALL_DIR', "/usr/share/php"); |
| 189 | +define('PEAR_EXTENSION_DIR', "/usr/lib/php5/20090626"); |
| 190 | +define('PHP_EXTENSION_DIR', "/usr/lib/php5/20090626"); |
192 | 191 | /**
|
193 | 192 | * Specifies where the binaries were installed into.
|
194 | 193 | * @link https://php.net/manual/en/reserved.constants.php
|
195 | 194 | */
|
196 |
| -define ('PHP_BINARY', '/usr/local/php/bin/php'); |
197 |
| -define ('PHP_PREFIX', "/usr"); |
198 |
| -define ('PHP_BINDIR', "/usr/bin"); |
199 |
| -define ('PHP_LIBDIR', "/usr/lib/php5"); |
200 |
| -define ('PHP_DATADIR', "/usr/share"); |
201 |
| -define ('PHP_SYSCONFDIR', "/etc"); |
202 |
| -define ('PHP_LOCALSTATEDIR', "/var"); |
203 |
| -define ('PHP_CONFIG_FILE_PATH', "/etc/php5/cli"); |
204 |
| -define ('PHP_CONFIG_FILE_SCAN_DIR', "/etc/php5/cli/conf.d"); |
205 |
| -define ('PHP_SHLIB_SUFFIX', "so"); |
206 |
| -define ('PHP_EOL', "\n"); |
207 |
| -define ('SUHOSIN_PATCH', 1); |
208 |
| -define ('SUHOSIN_PATCH_VERSION', "0.9.10"); |
209 |
| -define ('PHP_MAXPATHLEN', 4096); |
210 |
| -define ('PHP_INT_MAX', 9223372036854775807); |
211 |
| -define ('PHP_INT_MIN', -9223372036854775808); |
212 |
| -define ('PHP_INT_SIZE', 8); |
| 195 | +define('PHP_BINARY', '/usr/local/php/bin/php'); |
| 196 | +define('PHP_PREFIX', "/usr"); |
| 197 | +define('PHP_BINDIR', "/usr/bin"); |
| 198 | +define('PHP_LIBDIR', "/usr/lib/php5"); |
| 199 | +define('PHP_DATADIR', "/usr/share"); |
| 200 | +define('PHP_SYSCONFDIR', "/etc"); |
| 201 | +define('PHP_LOCALSTATEDIR', "/var"); |
| 202 | +define('PHP_CONFIG_FILE_PATH', "/etc/php5/cli"); |
| 203 | +define('PHP_CONFIG_FILE_SCAN_DIR', "/etc/php5/cli/conf.d"); |
| 204 | +define('PHP_SHLIB_SUFFIX', "so"); |
| 205 | +define('PHP_EOL', "\n"); |
| 206 | +define('SUHOSIN_PATCH', 1); |
| 207 | +define('SUHOSIN_PATCH_VERSION', "0.9.10"); |
| 208 | +define('PHP_MAXPATHLEN', 4096); |
| 209 | +define('PHP_INT_MAX', 9223372036854775807); |
| 210 | +define('PHP_INT_MIN', -9223372036854775808); |
| 211 | +define('PHP_INT_SIZE', 8); |
213 | 212 | /**
|
214 | 213 | * Number of decimal digits that can be rounded into a float and back without precision loss. Available as of PHP 7.2.0.
|
215 | 214 | * @since 7.2
|
|
231 | 230 | * @since 7.2
|
232 | 231 | */
|
233 | 232 | define('PHP_FLOAT_MIN', 2.2250738585072e-308);
|
234 |
| -define ('ZEND_MULTIBYTE', 0); |
235 |
| -define ('PHP_OUTPUT_HANDLER_START', 1); |
236 |
| -define ('PHP_OUTPUT_HANDLER_CONT', 2); |
237 |
| -define ('PHP_OUTPUT_HANDLER_END', 4); |
238 |
| -define ('UPLOAD_ERR_OK', 0); |
239 |
| -define ('UPLOAD_ERR_INI_SIZE', 1); |
240 |
| -define ('UPLOAD_ERR_FORM_SIZE', 2); |
241 |
| -define ('UPLOAD_ERR_PARTIAL', 3); |
242 |
| -define ('UPLOAD_ERR_NO_FILE', 4); |
243 |
| -define ('UPLOAD_ERR_NO_TMP_DIR', 6); |
244 |
| -define ('UPLOAD_ERR_CANT_WRITE', 7); |
245 |
| -define ('UPLOAD_ERR_EXTENSION', 8); |
| 233 | +define('ZEND_MULTIBYTE', 0); |
| 234 | +define('PHP_OUTPUT_HANDLER_START', 1); |
| 235 | +define('PHP_OUTPUT_HANDLER_CONT', 2); |
| 236 | +define('PHP_OUTPUT_HANDLER_END', 4); |
| 237 | +define('UPLOAD_ERR_OK', 0); |
| 238 | +define('UPLOAD_ERR_INI_SIZE', 1); |
| 239 | +define('UPLOAD_ERR_FORM_SIZE', 2); |
| 240 | +define('UPLOAD_ERR_PARTIAL', 3); |
| 241 | +define('UPLOAD_ERR_NO_FILE', 4); |
| 242 | +define('UPLOAD_ERR_NO_TMP_DIR', 6); |
| 243 | +define('UPLOAD_ERR_CANT_WRITE', 7); |
| 244 | +define('UPLOAD_ERR_EXTENSION', 8); |
246 | 245 | define('STDIN', fopen('php://stdin', 'r'));
|
247 | 246 | define('STDOUT', fopen('php://stdout', 'w'));
|
248 | 247 | define('STDERR', fopen('php://stderr', 'w'));
|
|
0 commit comments