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


PHP GC_Utils_Ex::getDebugBacktrace方法代碼示例

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


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

示例1: sfGetErrMsg

 /**
  * エラーメッセージを生成する
  *
  * @return string
  */
 function sfGetErrMsg()
 {
     $errmsg = '';
     $errmsg .= $this->lfGetErrMsgHead();
     $errmsg .= "\n";
     // デバッグ用のメッセージが指定されている場合
     if (!empty($this->arrDebugMsg)) {
         $errmsg .= implode("\n\n", $this->arrDebugMsg) . "\n";
     }
     // PEAR エラーを伴う場合
     if (!is_null($this->pearResult)) {
         $errmsg .= $this->pearResult->message . "\n\n";
         $errmsg .= $this->pearResult->userinfo . "\n\n";
         $errmsg .= GC_Utils_Ex::toStringBacktrace($this->pearResult->backtrace);
     } else {
         if (is_array($this->backtrace)) {
             $errmsg .= GC_Utils_Ex::toStringBacktrace($this->backtrace);
         } else {
             $arrBacktrace = GC_Utils_Ex::getDebugBacktrace();
             $errmsg .= GC_Utils_Ex::toStringBacktrace($arrBacktrace);
         }
     }
     return $errmsg;
 }
開發者ID:snguyenone,項目名稱:ec-cube-ja-2.12.6,代碼行數:29,代碼來源:LC_Page_Error_SystemError.php

示例2: gfPrintLog

 /**
  * ログの出力を行う
  *
  * エラー・警告は trigger_error() を経由して利用すること。(補足の出力は例外。)
  * @param string $msg
  * @param string $path
  * @param bool $verbose 冗長な出力を行うか
  */
 function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG)
 {
     // 日付の取得
     $today = date('Y/m/d H:i:s');
     // 出力パスの作成
     if (strlen($path) === 0) {
         $path = GC_Utils_Ex::isAdminFunction() ? ADMIN_LOG_REALFILE : LOG_REALFILE;
     }
     $msg = "{$today} [{$_SERVER['SCRIPT_NAME']}] {$msg} from {$_SERVER['REMOTE_ADDR']}\n";
     if ($verbose) {
         if (GC_Utils_Ex::isFrontFunction()) {
             $msg .= 'customer_id = ' . $_SESSION['customer']['customer_id'] . "\n";
         }
         if (GC_Utils_Ex::isAdminFunction()) {
             $msg .= 'login_id = ' . $_SESSION['login_id'] . '(' . $_SESSION['authority'] . ')' . '[' . session_id() . ']' . "\n";
         }
         $msg .= GC_Utils_Ex::toStringBacktrace(GC_Utils_Ex::getDebugBacktrace());
     }
     error_log($msg, 3, $path);
     // ログテーション
     GC_Utils_Ex::gfLogRotation(MAX_LOG_QUANTITY, MAX_LOG_SIZE, $path);
 }
開發者ID:nassos9090,項目名稱:plugin,代碼行數:30,代碼來源:GC_Utils.php


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