當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Throwable::getErrorName方法代碼示例

本文整理匯總了PHP中Throwable::getErrorName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Throwable::getErrorName方法的具體用法?PHP Throwable::getErrorName怎麽用?PHP Throwable::getErrorName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Throwable的用法示例。


在下文中一共展示了Throwable::getErrorName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: renderException

 /**
  * @param \Exception|\Throwable $exception
  */
 private function renderException($exception)
 {
     if ($exception instanceof ErrorException) {
         fwrite(STDERR, sprintf("ErrorException: %s \n", $exception->getErrorName()));
     } else {
         fwrite(STDERR, sprintf("Exception: %s (Code: %d)\n", get_class($exception), $exception->getCode()));
     }
     fwrite(STDERR, sprintf("Location: %s (Line %d)\n\n", $exception->getFile(), $exception->getLine()));
     fwrite(STDERR, $exception->getMessage() . "\n\n");
     if ($exception instanceof HasFileInfoException) {
         fwrite(STDERR, "\nException occured while processing file: " . $exception->getFile() . "\n\n");
     }
     $trace = $exception->getTrace();
     array_shift($trace);
     if (count($trace) == 0) {
         fwrite(STDERR, 'No stacktrace available');
     }
     foreach ($trace as $pos => $entry) {
         fwrite(STDERR, sprintf('#%1$d %2$s(%3$d): %4$s%5$s%6$s()' . "\n", $pos, isset($entry['file']) ? $entry['file'] : 'unknown', isset($entry['line']) ? $entry['line'] : '0', isset($entry['class']) ? $entry['class'] : '', isset($entry['type']) ? $entry['type'] : '', isset($entry['function']) ? $entry['function'] : ''));
     }
     $nested = $exception->getPrevious();
     if ($nested !== NULL) {
         fwrite(STDERR, "\n\n");
         $this->renderException($nested);
     }
 }
開發者ID:theseer,項目名稱:phpdox,代碼行數:29,代碼來源:ErrorHandler.php


注:本文中的Throwable::getErrorName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。