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


PHP EE_Error::_format_error方法代码示例

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


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

示例1: error_handler

 /**
  *    error_handler
  * @access public
  * @param $code
  * @param $message
  * @param $file
  * @param $line
  * @return void
  */
 public static function error_handler($code, $message, $file, $line)
 {
     $type = EE_Error::error_type($code);
     $site = site_url();
     switch ($site) {
         case 'http://ee4.eventespresso.com/':
         case 'http://ee4decaf.eventespresso.com/':
         case 'http://ee4hf.eventespresso.com/':
         case 'http://ee4a.eventespresso.com/':
         case 'http://ee4ad.eventespresso.com/':
         case 'http://ee4b.eventespresso.com/':
         case 'http://ee4bd.eventespresso.com/':
         case 'http://ee4d.eventespresso.com/':
         case 'http://ee4dd.eventespresso.com/':
             $to = 'developers@eventespresso.com';
             break;
         default:
             $to = get_option('admin_email');
     }
     $subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url();
     $msg = EE_Error::_format_error($type, $message, $file, $line);
     if (function_exists('wp_mail')) {
         add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type'));
         wp_mail($to, $subject, $msg);
     }
     echo '<div id="message" class="espresso-notices error"><p>';
     echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line;
     echo '<br /></p></div>';
 }
开发者ID:adrianjonmiller,项目名称:hearts-being-healed,代码行数:38,代码来源:EE_Error.core.php

示例2: error_handler

 /**
  *    error_handler
  * @access public
  * @param $code
  * @param $message
  * @param $file
  * @param $line
  * @return void
  */
 public static function error_handler($code, $message, $file, $line)
 {
     if (!function_exists('wp_mail')) {
         return;
     }
     $ver = espresso_version();
     if (strpos($ver, 'dev') || strpos($ver, 'alpha') || strpos($ver, 'beta') || strpos($ver, 'hotfix')) {
         $type = EE_Error::error_type($code);
         $site = site_url();
         switch ($site) {
             case 'http://ee4.eventespresso.com/':
             case 'http://ee4decaf.eventespresso.com/':
             case 'http://ee4hf.eventespresso.com/':
             case 'http://ee4a.eventespresso.com/':
             case 'http://ee4ad.eventespresso.com/':
             case 'http://ee4b.eventespresso.com/':
             case 'http://ee4bd.eventespresso.com/':
             case 'http://ee4d.eventespresso.com/':
             case 'http://ee4dd.eventespresso.com/':
                 $to = 'developers@eventespresso.com';
                 break;
             default:
                 $to = get_option('admin_email');
         }
         $subject = 'Error type ' . $type . ' occurred in ' . $ver . ' on ' . site_url();
         $msg = EE_Error::_format_error($type, $message, $file, $line);
         add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type'));
         wp_mail($to, $subject, $msg);
     }
 }
开发者ID:antares-ff,项目名称:ANTARES-Test,代码行数:39,代码来源:EE_Error.core.php


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