The constants below are always available as part of the PHP core.
The following constants (either the corresponding numerical value or their symbolic name) are used as a bitmask to specify which errors to report. It is possible to use bitwise operators to combine these values or mask out certain types of errors.
The name of the constants can be used within php.ini,
instead of the raw numerical values to which they correspond to.
However, only the
|
,
~
,
^
,
!
,
&
operators are understood within php.ini.
It is not possible to use the symbolic names outside of PHP. For example in httpd.conf the computed bitmask value must be used instead.
E_ERROR
(int)
1
E_WARNING
(int)
2
E_PARSE
(int)
4
E_NOTICE
(int)
8
E_CORE_ERROR
(int)
E_ERROR
,
except it is generated by the core of PHP.
Value of the constant: 16
E_CORE_WARNING
(int)
E_WARNING
,
except it is generated by the core of PHP.
Value of the constant: 32
E_COMPILE_ERROR
(int)
E_ERROR
,
except it is generated by the Zend Scripting Engine.
Value of the constant: 64
E_COMPILE_WARNING
(int)
E_WARNING
,
except it is generated by the Zend Scripting Engine.
Value of the constant: 128
E_DEPRECATED
(int)
8192
E_USER_ERROR
(int)
E_ERROR
,
except it is generated in PHP code by using the PHP function
trigger_error().
Value of the constant: 256
Usage of this constant with trigger_error() is
deprecated as of PHP 8.4.0.
It is recommended to either throw
an Exception
or call exit() instead.
E_USER_WARNING
(int)
E_WARNING
,
except it is generated in PHP code by using the PHP function
trigger_error().
Value of the constant: 512
E_USER_NOTICE
(int)
E_NOTICE
,
except it is generated in PHP code by using the PHP function
trigger_error().
Value of the constant: 1024
E_USER_DEPRECATED
(int)
E_DEPRECATED
,
except it is generated in PHP code by using the PHP function
trigger_error().
Value of the constant: 16384
E_STRICT
(int)
2048
This error level is unused, and has been deprecated as of PHP 8.4.0.
E_RECOVERABLE_ERROR
(int)
E_ERROR
.
Value of the constant: 4096
Note: This error level is effectively unused, the only case where this can happen is when interpreting an object as a bool fails. This can only happen for internal objects. The most common example, prior to PHP 8.4.0, is using a GMP instance in a conditional.
E_ALL
(int)
32767