当前位置: 首页>>代码示例>>PHP>>正文


PHP Ethna_Util::FormatBacktrace方法代码示例

本文整理汇总了PHP中Ethna_Util::FormatBacktrace方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Util::FormatBacktrace方法的具体用法?PHP Ethna_Util::FormatBacktrace怎么用?PHP Ethna_Util::FormatBacktrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ethna_Util的用法示例。


在下文中一共展示了Ethna_Util::FormatBacktrace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _alert

 /**
  *  メールを送信する
  *
  *  @access protected
  *  @param  string  $message    ログメッセージ
  */
 function _alert($message)
 {
     restore_error_handler();
     $c = Ethna_Controller::getInstance();
     $appid = $c->getAppId();
     $header = "Mime-Version: 1.0\n";
     $header .= "Content-Type: text/plain; charset=ISO-2022-JP\n";
     $header .= "X-Alert: " . $appid;
     $subject = sprintf("[%s] alert (%s%s)\n", $appid, substr($message, 0, 12), strlen($message) > 12 ? "..." : "");
     $message = sprintf("--- [log message] ---\n%s\n\n", $message);
     if (function_exists("debug_backtrace")) {
         $bt = debug_backtrace();
         $message .= sprintf("--- [backtrace] ---\n%s\n", Ethna_Util::FormatBacktrace($bt));
     }
     foreach ($this->mailaddress as $address) {
         mail($address, $subject, mb_convert_encoding($message, "ISO-2022-JP"), $header);
     }
     set_error_handler("ethna_error_handler");
 }
开发者ID:riaf,项目名称:ethna,代码行数:25,代码来源:Alertmail.php

示例2: _alert

 /**
  *  アラートメールを送信する
  *
  *  @access protected
  *  @param  string  $message    ログメッセージ
  *  @return int     0:正常終了
  *  @deprecated
  */
 protected function _alert($message)
 {
     restore_error_handler();
     // ヘッダ
     $header = "Mime-Version: 1.0\n";
     $header .= "Content-Type: text/plain; charset=ISO-2022-JP\n";
     $header .= "X-Alert: " . $this->container->getAppId();
     $subject = sprintf("[%s] alert (%s%s)\n", $this->container->getAppId(), substr($message, 0, 12), strlen($message) > 12 ? "..." : "");
     // 本文
     $mail = sprintf("--- [log message] ---\n%s\n\n", $message);
     if (function_exists("debug_backtrace")) {
         $bt = debug_backtrace();
         $mail .= sprintf("--- [backtrace] ---\n%s\n", Ethna_Util::FormatBacktrace($bt));
     }
     foreach ($this->alert_mailaddress as $mailaddress) {
         mail($mailaddress, $subject, mb_convert_encoding($mail, "ISO-2022-JP"), $header);
     }
     set_error_handler("ethna_error_handler");
     return 0;
 }
开发者ID:dqneo,项目名称:ethnam,代码行数:28,代码来源:Logger.php


注:本文中的Ethna_Util::FormatBacktrace方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。