PHP Error Levels
Bitmask constants used in error_reporting() and PHP's error handler, representing the severity and origin of a PHP error.
16 codes
-
E_ALLAll Errors -
E_COMPILE_ERRORCompile-time Fatal Error -
E_COMPILE_WARNINGCompile-time Warning -
E_CORE_ERRORCore Fatal Error -
E_CORE_WARNINGCore Warning -
E_DEPRECATEDDeprecation Notice -
E_ERRORFatal Runtime Error -
E_NOTICERuntime Notice -
E_PARSEParse Error -
E_RECOVERABLE_ERRORRecoverable Fatal Error -
E_STRICTStrict Standards -
E_USER_DEPRECATEDUser Deprecation Notice -
E_USER_ERRORUser Fatal Error -
E_USER_NOTICEUser Notice -
E_USER_WARNINGUser Warning -
E_WARNINGRuntime Warning