PHP 클래스 Horde_ErrorHandler, horde

Copyright 2012-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
저자: Michael Slusarz ([email protected])
파일 보기 프로젝트 열기: horde/horde 1 사용 예제들

공개 메소드들

메소드 설명
catchFatalError ( ) Catch fatal errors.
errorHandler ( integer $errno, string $errstr, string $errfile, integer $errline, array $errcontext ) PHP legacy error handling (non-Exceptions).
fatal ( mixed $error ) Aborts with a fatal error, displaying debug information to the user.

메소드 상세

catchFatalError() 공개 정적인 메소드

Catch fatal errors.
public static catchFatalError ( )

errorHandler() 공개 정적인 메소드

PHP legacy error handling (non-Exceptions).
public static errorHandler ( integer $errno, string $errstr, string $errfile, integer $errline, array $errcontext )
$errno integer See set_error_handler().
$errstr string See set_error_handler().
$errfile string See set_error_handler().
$errline integer See set_error_handler().
$errcontext array See set_error_handler().

fatal() 공개 정적인 메소드

Aborts with a fatal error, displaying debug information to the user.
public static fatal ( mixed $error )
$error mixed Either a string or an object with a getMessage() method (e.g. PEAR_Error, Exception).