PHP error level - error_reporting

PHP error level - error_reporting

The error_reporting directive in php.ini defines the levels of errors that PHP will report, the levels of errors are:

 

Errors and Logging
ValueConstantDescriptionNote
1E_ERROR (integer)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.
2E_WARNING (integer)Run-time warnings (non-fatal errors). Execution of the script is not halted.
4E_PARSE (integer)Compile-time parse errors. Parse errors should only be generated by the parser.
8E_NOTICE (integer)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.
16E_CORE_ERROR (integer)Fatal errors that occur during PHP's initial startup. This is like an E_ERROR, except it is generated by the core of PHP.since PHP 4
32E_CORE_WARNING(integer)Warnings (non-fatal errors) that occur during PHP's initial startup. This is like an E_WARNING, except it is generated by the core of PHP.since PHP 4
64E_COMPILE_ERROR(integer)Fatal compile-time errors. This is like an E_ERROR, except it is generated by the Zend Scripting Engine.since PHP 4
128E_COMPILE_WARNING(integer)Compile-time warnings (non-fatal errors). This is like an E_WARNING, except it is generated by the Zend Scripting Engine.since PHP 4
256E_USER_ERROR (integer)User-generated error message. This is like an E_ERROR, except it is generated in PHP code by using the PHP function trigger_error().since PHP 4
512E_USER_WARNING(integer)User-generated warning message. This is like an E_WARNING, except it is generated in PHP code by using the PHP functiontrigger_error().since PHP 4
1024E_USER_NOTICE (integer)User-generated notice message. This is like an E_NOTICE, except it is generated in PHP code by using the PHP function trigger_error().since PHP 4
2048E_STRICT (integer)Run-time notices. Enable to have PHP suggest changes to your code which will ensure the best interoperability and forward compatibility of your code.since PHP 5
4096E_RECOVERABLE_ERROR(integer)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 set_error_handler()), the application aborts as it was an E_ERROR.since PHP 5.2.0
8191E_ALL (integer)All errors and warnings, as supported, except of level E_STRICT in PHP < 6.6143 in PHP 5.2.x and 2047 previously

    • Related Articles

    • Fatal error: Uncaught GuzzleHttp\Exception\RequestException: cURL error

      El error fatal: no descubierto GuzzleHttp \ Exception \ RequestException: el error cURL se puede mostrar en la interfaz de Scriptcase en dos situaciones Al usar la aplicación Calendario integrada en Google Al usar la API de Google Drive Para que el ...
    • Error al enviar correo: stream_socket_client()

      Cuando se desea enviar un correo y muestra el siguiente error error:   stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages:error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed  ...
    • Ejecución de error de pantallas reCaptcha - MacOS

      Si se muestra el siguiente error al enviar el formulario / control con reCaptcha, realice los siguientes pasos: Advertencia: file_get_contents (): la operación SSL falló con el código 1. Mensajes de error de OpenSSL: error: 14090086: rutinas SSL: ...
    • Setting environment manually PHP 5.6 - Windows

      Installing a Manual PHP 5.6 Environment - Windows This article will explain how to install and set-up a PHP 5.6 environment with Apache 2.4 so that it'll run Scriptcase. Follow the steps below with caution. Download the Apache 2.4 , mod_fcgid and PHP ...
    • Instalador para macOS - PHP 7.3

      El instalador de Scriptcase instala Apache, PHP y Scriptcase en su sistema operativo. El instalador no incluye una base de datos Pre-requisitos Para descargar el instalador de Scriptcase, vaya a nuestra página de descarga haciendo clic aqui. ...