update : 2015.11.03
php.shukuma.com검색:
|
ErrorException(PHP 5 >= 5.1.0) 소개오류 예외. 클래스 개요
ErrorException
extends
Exception
{
/* 프로퍼티 */
/* 상속된 프로퍼티 */
/* 메소드 */
public __construct
([ string
$message = ""
[, int $code = 0
[, int $severity = 1
[, string $filename = __FILE__
[, int $lineno = __LINE__
[, Exception $previous = NULL
]]]]]] )/* 상속된 메소드 */
}프로퍼티
예제
Example #1 set_error_handler() 을 사용하면 ErrorException 의 오류 메시지를 변경할 수 있습니다.
<?php 위 예제의 출력 예시: Fatal error: Uncaught exception 'ErrorException' with message 'Wrong parameter count for strpos()' in /home/bjori/tmp/ex.php:8 Stack trace: #0 [internal function]: exception_error_handler(2, 'Wrong parameter...', '/home/bjori/php...', 8, Array) #1 /home/bjori/php/cleandocs/test.php(8): strpos() #2 {main} thrown in /home/bjori/tmp/ex.php on line 8 Table of Contents
|