本文整理匯總了PHP中fCore::captured_errors_previous_handler方法的典型用法代碼示例。如果您正苦於以下問題:PHP fCore::captured_errors_previous_handler方法的具體用法?PHP fCore::captured_errors_previous_handler怎麽用?PHP fCore::captured_errors_previous_handler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類fCore
的用法示例。
在下文中一共展示了fCore::captured_errors_previous_handler方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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_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;
}
示例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_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;
}