Файловый менеджер - Редактировать - /home/clickysoft/public_html/securebeans.clickysoft.net/vendor/bugsnag/bugsnag/src/ErrorTypes.php
Назад
<?php namespace Bugsnag; class ErrorTypes { /** * The error types map. * * @var array[] */ protected static $ERROR_TYPES = [ E_ERROR => [ 'name' => 'PHP Fatal Error', 'severity' => 'error', ], E_WARNING => [ 'name' => 'PHP Warning', 'severity' => 'warning', ], E_PARSE => [ 'name' => 'PHP Parse Error', 'severity' => 'error', ], E_NOTICE => [ 'name' => 'PHP Notice', 'severity' => 'info', ], E_CORE_ERROR => [ 'name' => 'PHP Core Error', 'severity' => 'error', ], E_CORE_WARNING => [ 'name' => 'PHP Core Warning', 'severity' => 'warning', ], E_COMPILE_ERROR => [ 'name' => 'PHP Compile Error', 'severity' => 'error', ], E_COMPILE_WARNING => [ 'name' => 'PHP Compile Warning', 'severity' => 'warning', ], E_USER_ERROR => [ 'name' => 'User Error', 'severity' => 'error', ], E_USER_WARNING => [ 'name' => 'User Warning', 'severity' => 'warning', ], E_USER_NOTICE => [ 'name' => 'User Notice', 'severity' => 'info', ], E_STRICT => [ 'name' => 'PHP Strict', 'severity' => 'info', ], E_RECOVERABLE_ERROR => [ 'name' => 'PHP Recoverable Error', 'severity' => 'error', ], E_DEPRECATED => [ 'name' => 'PHP Deprecated', 'severity' => 'info', ], E_USER_DEPRECATED => [ 'name' => 'User Deprecated', 'severity' => 'info', ], ]; /** * Is the given error code fatal? * * @param int $code the error code * * @return bool */ public static function isFatal($code) { return static::getSeverity($code) === 'error'; } /** * Get the name of the given error code. * * @param int $code the error code * * @return string */ public static function getName($code) { if (array_key_exists($code, static::$ERROR_TYPES)) { return static::$ERROR_TYPES[$code]['name']; } return 'Unknown'; } /** * Get the severity of the given error code. * * @param int $code the error code * * @return string */ public static function getSeverity($code) { if (array_key_exists($code, static::$ERROR_TYPES)) { return static::$ERROR_TYPES[$code]['severity']; } return 'error'; } /** * Get the the levels for the given severity. * * @param string $severity the given severity * * @return int */ public static function getLevelsForSeverity($severity) { $levels = 0; foreach (static::$ERROR_TYPES as $level => $info) { if ($info['severity'] == $severity) { $levels |= $level; } } return $levels; } /** * Get a list of all PHP error codes. * * @return int[] */ public static function getAllCodes() { return array_keys(self::$ERROR_TYPES); } /** * Convert the given error code to a string representation. * * For example, E_ERROR => 'E_ERROR'. * * @param int $code * * @return string */ public static function codeToString($code) { switch ($code) { case E_ERROR: return 'E_ERROR'; case E_WARNING: return 'E_WARNING'; case E_PARSE: return 'E_PARSE'; case E_NOTICE: return 'E_NOTICE'; case E_CORE_ERROR: return 'E_CORE_ERROR'; case E_CORE_WARNING: return 'E_CORE_WARNING'; case E_COMPILE_ERROR: return 'E_COMPILE_ERROR'; case E_COMPILE_WARNING: return 'E_COMPILE_WARNING'; case E_USER_ERROR: return 'E_USER_ERROR'; case E_USER_WARNING: return 'E_USER_WARNING'; case E_USER_NOTICE: return 'E_USER_NOTICE'; case E_STRICT: return 'E_STRICT'; case E_RECOVERABLE_ERROR: return 'E_RECOVERABLE_ERROR'; case E_DEPRECATED: return 'E_DEPRECATED'; case E_USER_DEPRECATED: return 'E_USER_DEPRECATED'; default: return 'Unknown'; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка