PHP 클래스 CI_Exceptions, TastyIgniter

저자: EllisLab Dev Team
파일 보기 프로젝트 열기: tastyigniter/tastyigniter 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$levels array List of available error levels
$ob_level integer Nesting level of the output buffering mechanism

공개 메소드들

메소드 설명
__construct ( ) : void Class constructor
log_exception ( integer $severity, string $message, string $filepath, integer $line ) : void Exception Logger
show_404 ( string $page = '', boolean $log_error = TRUE ) : void 404 Error Handler
show_error ( string $heading, string | string[] $message, string $template = 'error_general', integer $status_code = 500 ) : string General Error Page
show_exception ( $exception ) --------------------------------------------------------------------
show_php_error ( integer $severity, string $message, string $filepath, integer $line ) : string Native PHP error handler

메소드 상세

__construct() 공개 메소드

Class constructor
public __construct ( ) : void
리턴 void

log_exception() 공개 메소드

Logs PHP generated error messages
public log_exception ( integer $severity, string $message, string $filepath, integer $line ) : void
$severity integer Log level
$message string Error message
$filepath string File path
$line integer Line number
리턴 void

show_404() 공개 메소드

404 Error Handler
public show_404 ( string $page = '', boolean $log_error = TRUE ) : void
$page string Page URI
$log_error boolean Whether to log the error
리턴 void

show_error() 공개 메소드

Takes an error message as input (either as a string or an array) and displays it using the specified template.
public show_error ( string $heading, string | string[] $message, string $template = 'error_general', integer $status_code = 500 ) : string
$heading string Page heading
$message string | string[] Error message
$template string Template name
$status_code integer (default: 500)
리턴 string Error page output

show_exception() 공개 메소드

--------------------------------------------------------------------
public show_exception ( $exception )

show_php_error() 공개 메소드

Native PHP error handler
public show_php_error ( integer $severity, string $message, string $filepath, integer $line ) : string
$severity integer Error level
$message string Error message
$filepath string File path
$line integer Line number
리턴 string Error page output

프로퍼티 상세

$levels 공개적으로 프로퍼티

List of available error levels
public array $levels
리턴 array

$ob_level 공개적으로 프로퍼티

Nesting level of the output buffering mechanism
public int $ob_level
리턴 integer