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


PHP SplSubject::getException方法代碼示例

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


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

示例1: update

 public function update(\SplSubject $subject, $isException = false)
 {
     if (!$isException) {
         $error = $subject->getError();
         $typeLog = $error->code == 'E_FATAL' ? 'fatal' : 'error';
         Logger::getInstance()->{$typeLog}(ucfirst($error->type) . ' : ' . $error->message . ' in ' . $error->file . ' on line ' . $error->line, 'error');
     } else {
         $exception = $subject->getException();
         Logger::getInstance()->fatal('Exception' . ' : "' . $exception->message . '" in ' . $exception->file . ' on line ' . $exception->line . ' with trace : ' . chr(10) . $exception->trace, 'error');
     }
 }
開發者ID:eric-burel,項目名稱:twentyparts,代碼行數:11,代碼來源:Log.class.php

示例2: update

 /**
  * Mail the sysadmin with Exception information.
  *
  * @param    SplSubject $subject   The ExceptionHandler
  * @return   bool
  */
 public function update(SplSubject $subject)
 {
     $exception = $subject->getException();
     // perhaps emailer also would like to know the server in question
     $output = 'Server: ' . $_SERVER['HOSTNAME'] . PHP_EOL;
     $output .= 'File: ' . $exception->getFile() . PHP_EOL;
     $output .= 'Line: ' . $exception->getLine() . PHP_EOL;
     $output .= 'Message: ' . PHP_EOL . $exception->getMessage() . PHP_EOL;
     $output .= 'Stack Trace:' . PHP_EOL . $exception->getTraceAsString() . PHP_EOL;
     $headers = 'From: webmaster@yourdomain.com' . "\r\n" . 'Reply-To: webmaster@yourdomain.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
     echo "\n\nThe following email (would be) sent to your webmaster@yourdomain.com:\n\n";
     echo $output;
     //return mail('webmaster@yourdomain.com', 'Exception Thrown', $output, $headers);
 }
開發者ID:pixlr,項目名稱:ZCE-PHP-Cert,代碼行數:20,代碼來源:observer-exception-handler.php

示例3: update

 /**
  * Update the error_log with
  * information about the Exception.
  *
  * @param SplSubject $subject   The ExceptionHandler
  * @return boolean
  */
 public function update(SplSubject $subject)
 {
     return error_log($subject->getException(), 0, $this->filename);
 }
開發者ID:vih,項目名稱:vih.dk,代碼行數:11,代碼來源:Logger.php


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