PHP预定了两个异常类:Exception和ErrorException
protected int $severity ;
/ 方法 /
public construct ([ string $message = "" [,int $severity = 1 [,string $filename = FILE [,int $lineno = LINE__ [,Exception $prevIoUs = NULL ]]]]]] )
final public int getSeverity ( void )
/ 继承的方法 /
final public string Exception::getMessage ( void )
final public Exception Exception::getPrevIoUs ( void )
final public int Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::toString ( void )
final private void Exception::clone ( void )
}
那么如何捕获异常?
(1)PHP可用try...catch...捕获异常,进行异常处理的代码必须在try代码块内。
(2)用户可以自定义异常处理函数[set_exception_handler],用于没用用try/catch捕获的异常。
set_exception_handler ( 'exception_handler' );
throw new Exception ( 'Uncaught Exception' );
echo "这行不会执行了";
可以看到使用ser_exception_handler回调函数处理异常,后续的代码不会继续执行,但try-catch可以。 (3)PHP可用多catch捕获不同类型异常,并允许在catch代码块内再次抛出异常。
public function myFunction() {
echo 'just for test';
}
}
try {
throw new MyException('an error');
} catch (MyException $e) {
echo $e->myFunction();
} catch (Exception $e) {
echo $e->getMessage();
}
可对比如下:
//使用finally后
function doSomething2() {
$resource = createResource();
try {
$result = useResource($resource);
return $result;
} catch (Exception $e) {
log($e->getMessage());
exit();
} finally {
releaseResource($resource);
}
}