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


PHP fCore::captured_errors方法代碼示例

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


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

示例1: stopErrorCapture

 /**
  * Stops capturing error messages, returning all that have been captured
  *
  * @param  string $regex  A PCRE regex to filter messages by
  * @return array  The captured error messages
  */
 public static function stopErrorCapture($regex = NULL)
 {
     $captures = self::$captured_errors[self::$captured_error_level];
     self::$captured_error_level--;
     self::$captured_error_regex = array_slice(self::$captured_error_regex, 0, self::$captured_error_level, TRUE);
     self::$captured_error_types = array_slice(self::$captured_error_types, 0, self::$captured_error_level, TRUE);
     self::$captured_errors = array_slice(self::$captured_errors, 0, self::$captured_error_level, TRUE);
     self::$captured_errors_previous_handler = array_slice(self::$captured_errors_previous_handler, 0, self::$captured_error_level, TRUE);
     restore_error_handler();
     if ($regex) {
         $new_captures = array();
         foreach ($captures as $capture) {
             if (!preg_match($regex, $capture['string'])) {
                 continue;
             }
             $new_captures[] = $capture;
         }
         $captures = $new_captures;
     }
     return $captures;
 }
開發者ID:alandsidel,項目名稱:flourish-classes,代碼行數:27,代碼來源:fCore.php

示例2: stopErrorCapture

 /**
  * Stops capturing error messages, returning all that have been captured
  * 
  * @param  string $regex  A PCRE regex to filter messages by
  * @return array  The captured error messages
  */
 public static function stopErrorCapture($regex = NULL)
 {
     $captures = self::$captured_errors;
     self::$captured_error_regex = NULL;
     self::$captured_errors_previous_handler = NULL;
     self::$captured_error_types = NULL;
     self::$captured_errors = NULL;
     restore_error_handler();
     if ($regex) {
         $new_captures = array();
         foreach ($captures as $capture) {
             if (!preg_match($regex, $capture['string'])) {
                 continue;
             }
             $new_captures[] = $capture;
         }
         $captures = $new_captures;
     }
     return $captures;
 }
開發者ID:russss,項目名稱:hackspace-foundation-sites,代碼行數:26,代碼來源:fCore.php

示例3: stopErrorCapture

 /**
  * Stops capturing error messages, returning all that have been captured
  * 
  * @return array  The captured error messages
  */
 public static function stopErrorCapture()
 {
     $captures = self::$captured_errors;
     self::$captured_errors = NULL;
     restore_error_handler();
     return $captures;
 }
開發者ID:hibble,項目名稱:printmaster,代碼行數:12,代碼來源:fCore.php


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