PHP 的异常处理、错误的抛出及回调函数等面向对象的错误处理方法
异常处理
- PHP 中异常处理是通过 try...catch 代码块实现的。
- 当异常在 try 块中抛出时,控制权传递给 catch 块中的代码。
- catch 块中的代码用于处理异常。这可以让程序进行有意义的操作,而不是简单地停止运行。
- 在 PHP 中,可以创建自定义异常类,并将任何错误和异常转换为异常。
使用示例:
class CustomException extends Exception {
public function errorMessage() {
// 自定义错误信息
$errorMsg = '自定义错误信息: ' . $this->getMessage().' in '.$this->getFile().' on line '.$this->getLine();
return $errorMsg;
}
}
try {
$number = 10 / 0;
if($number == 0) {
throw new CustomException('Number cannot be zero.');
}
echo $number;
}
catch (CustomException $e) {
echo $e->errorMessage();
}
在上面的代码中,我们定义了一个 CustomException 类来处理自定义异常,并自定义了 errorMessage() 方法来设置错误信息。在 try 块中,我们定义了一个除数为 0 的运算,这会抛出一个异常。然后,我们检查异常类型并输出相应的错误信息。
错误的抛出
- 除了 throw 语句外,PHP 还有一些其他语句可以用于抛出错误。
- trigger_error() 函数可以在 PHP 代码中生成错误。
- PHP 还拥有一些内置错误类型,例如 E_WARNING 和 E_NOTICE。
使用示例:
$number = -5;
if ($number < 0) {
trigger_error("Number must be positive", E_USER_ERROR);
}
在上面的代码中,我们检查 $number 是否小于 0。如果它小于 0,则会触发一个 E_USER_ERROR 级别的 PHP 错误。
回调函数
- 在 PHP 中,可以通过调用回调函数来处理错误。
- register_shutdown_function() 是一个 PHP 函数,它在 PHP 代码执行完成或遇到致命错误时运行指定的回调函数。
- set_error_handler() 和 set_exception_handler() 函数是 PHP 中的另外两个回调函数。
使用示例:
function error_handler($errno, $errstr) {
echo "<b>Error:</b> [$errno] $errstr<br>";
}
function exception_handler($exception) {
echo "Uncaught exception: " , $exception->getMessage(), "<br>";
}
register_shutdown_function(function() {
if ($error = error_get_last()) {
var_dump($error);
}
});
set_error_handler("error_handler");
set_exception_handler("exception_handler");
echo $test;
在上面的代码中,我们定义了三个回调函数:error_handler()、exception_handler() 和一个在 PHP 代码执行完成后运行的匿名函数。我们使用 set_error_handler() 和 set_exception_handler() 函数指定了这两个回调函数,以便它们在发生错误或抛出异常时被调用。最后,我们尝试输出未定义的变量 $test,并查看发生了什么。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:PHP 的异常处理、错误的抛出及回调函数等面向对象的错误处理方法 - Python技术站