本文整理汇总了PHP中ExceptionHandler::getErrorTypeName方法的典型用法代码示例。如果您正苦于以下问题:PHP ExceptionHandler::getErrorTypeName方法的具体用法?PHP ExceptionHandler::getErrorTypeName怎么用?PHP ExceptionHandler::getErrorTypeName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ExceptionHandler
的用法示例。
在下文中一共展示了ExceptionHandler::getErrorTypeName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output
public static function output($error, $debug)
{
$context = '';
foreach ($error['errorContext'] as $key => $value) {
$context .= $key . ': ' . print_r($value, TRUE) . '<br />';
}
$trace = '';
foreach ($error['trace'] as $level => $data) {
$args = '';
$escaped_args = array_map('htmlspecialchars', $data['args']);
// foreach ($data['args'] as $arg) {
// $args = htmlspecialchars($arg).'<br />';
// }
$args = implode(', ', $escaped_args);
$trace .= '<br />#' . $level . ' ' . $data['file'] . ':' . $data['line'] . '<br />' . $data['class'] . $data['type'] . $data['function'] . '(' . $args . ')' . '<br />';
}
echo sprintf('<pre>Error(%s): %s<br />Source: %s:%s<br />Trace: %s<br />%s', ExceptionHandler::getErrorTypeName($error['errorCode']), $error['errorMessage'], $error['errorFile'], $error['errorLine'], $trace, $debug && $context ? 'Context:<br />' . $context : '');
//$this->getPrevious() — Возвращает предыдущее исключение
//$this->getTraceAsString — Получает трассировку стека в виде строки
}
示例2: output
public static function output($error, $debug)
{
echo sprintf("Error %s(%s): \"%s\" in %s: %s %s", ExceptionHandler::getErrorTypeName($error['errorCode']), $error['errorCode'], $error['errorMessage'], $error['errorFile'], $error['errorLine'], $debug ? print_r($error['errorContext'], 1) : '');
}
示例3: output
public static function output($error, $debug)
{
error_log(sprintf("Error %s (%s): %s in %s: %s", ExceptionHandler::getErrorTypeName($error['errorCode']), $error['errorCode'], $error['errorMessage'], $error['errorFile'], $error['errorLine']) . (php_sapi_name() == 'cli' ? '' : ' Referer: ' . $_SERVER['REQUEST_URI']) . ($debug ? PHP_EOL . print_r($error['errorContext']) . PHP_EOL : ''));
}