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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.21 $ -->
<appendix xml:id="errorfunc.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.constants;
&extension.constants.core;
<note>
<simpara>
You may use these constant names in &php.ini; but not outside
of PHP, like in &httpd.conf;, where you'd
use the bitmask values instead.
</simpara>
</note>
<table xml:id="errorfunc.constants.errorlevels">
<title>Errors and Logging</title>
<tgroup cols="4">
<thead>
<row>
<entry>Value</entry>
<entry>Constant</entry>
<entry>Description</entry>
<entry>Note</entry>
</row>
</thead>
<tbody>
<row xml:id="errorfunc.constants.errorlevels.e-error">
<entry>1</entry>
<entry>
<constant>E_ERROR</constant>
(<type>integer</type>)
</entry>
<entry>
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.
</entry>
<entry></entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-warning">
<entry>2</entry>
<entry>
<constant>E_WARNING</constant>
(<type>integer</type>)
</entry>
<entry>
Run-time warnings (non-fatal errors). Execution of the script is not
halted.
</entry>
<entry></entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-parse">
<entry>4</entry>
<entry>
<constant>E_PARSE</constant>
(<type>integer</type>)
</entry>
<entry>
Compile-time parse errors. Parse errors should only be generated by
the parser.
</entry>
<entry></entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-notice">
<entry>8</entry>
<entry>
<constant>E_NOTICE</constant>
(<type>integer</type>)
</entry>
<entry>
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.
</entry>
<entry></entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-core-error">
<entry>16</entry>
<entry>
<constant>E_CORE_ERROR</constant>
(<type>integer</type>)
</entry>
<entry>
Fatal errors that occur during PHP's initial startup. This is like an
<constant>E_ERROR</constant>, except it is generated by the core of PHP.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-core-warning">
<entry>32</entry>
<entry>
<constant>E_CORE_WARNING</constant>
(<type>integer</type>)
</entry>
<entry>
Warnings (non-fatal errors) that occur during PHP's initial startup.
This is like an <constant>E_WARNING</constant>, except it is generated
by the core of PHP.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-compile-error">
<entry>64</entry>
<entry>
<constant>E_COMPILE_ERROR</constant>
(<type>integer</type>)
</entry>
<entry>
Fatal compile-time errors. This is like an <constant>E_ERROR</constant>,
except it is generated by the Zend Scripting Engine.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-compile-warning">
<entry>128</entry>
<entry>
<constant>E_COMPILE_WARNING</constant>
(<type>integer</type>)
</entry>
<entry>
Compile-time warnings (non-fatal errors). This is like an
<constant>E_WARNING</constant>, except it is generated by the Zend
Scripting Engine.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-user-error">
<entry>256</entry>
<entry>
<constant>E_USER_ERROR</constant>
(<type>integer</type>)
</entry>
<entry>
User-generated error message. This is like an
<constant>E_ERROR</constant>, except it is generated in PHP code by
using the PHP function <function>trigger_error</function>.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-user-warning">
<entry>512</entry>
<entry>
<constant>E_USER_WARNING</constant>
(<type>integer</type>)
</entry>
<entry>
User-generated warning message. This is like an
<constant>E_WARNING</constant>, except it is generated in PHP code by
using the PHP function <function>trigger_error</function>.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-user-notice">
<entry>1024</entry>
<entry>
<constant>E_USER_NOTICE</constant>
(<type>integer</type>)
</entry>
<entry>
User-generated notice message. This is like an
<constant>E_NOTICE</constant>, except it is generated in PHP code by
using the PHP function <function>trigger_error</function>.
</entry>
<entry>since PHP 4</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-strict">
<entry>2048</entry>
<entry>
<constant>E_STRICT</constant>
(<type>integer</type>)
</entry>
<entry>
Run-time notices. Enable to have PHP suggest changes
to your code which will ensure the best interoperability
and forward compatibility of your code.
</entry>
<entry>since PHP 5</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-recoverable-error">
<entry>4096</entry>
<entry>
<constant>E_RECOVERABLE_ERROR</constant>
(<type>integer</type>)
</entry>
<entry>
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
<function>set_error_handler</function>), the application aborts as it
was an <constant>E_ERROR</constant>.
</entry>
<entry>since PHP 5.2.0</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-deprecated-error">
<entry>8192</entry>
<entry>
<constant>E_DEPRECATED</constant>
(<type>integer</type>)
</entry>
<entry>
Run-time notices. Enable this to receive warnings about code
that will not work in future versions.
</entry>
<entry>since PHP 5.3.0</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-user-deprecated">
<entry>16384</entry>
<entry>
<constant>E_USER_DEPRECATED</constant>
(<type>integer</type>)
</entry>
<entry>
User-generated warning message. This is like an
<constant>E_DEPRECATED</constant>, except it is generated in PHP code by
using the PHP function <function>trigger_error</function>.
</entry>
<entry>since PHP 5.3.0</entry>
</row>
<row xml:id="errorfunc.constants.errorlevels.e-all">
<entry>30719</entry>
<entry>
<constant>E_ALL</constant>
(<type>integer</type>)
</entry>
<entry>
All errors and warnings, as supported, except of level
<constant>E_STRICT</constant> in PHP < 6.
</entry>
<entry>
32767 in PHP 6,
30719 in PHP 5.3.x,
6143 in PHP 5.2.x,
2047 previously
</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
The above values (either numerical or symbolic) are used to build
up a bitmask that specifies which errors to report. You can use the
<link linkend="language.operators.bitwise">bitwise operators</link>
to combine these values or mask out certain types of errors. Note
that only '|', '~', '!', '^' and '&' will be understood within
&php.ini;.
</para>
</appendix>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|