迹忆客 计算机编程题库

PHP基础知识测验七

下面哪个关键字与 Exception 对象一起使用?
  • final
  • throw
  • exception
  • throws
正确答案是:B
正确率:85%

解析:

本题主要考查PHP中异常的使用。

异常(Exception)用于在指定的错误发生时改变脚本的正常流程,结合 try, throw 和 catch 使用。

try{
    // Your Code
} catch(Exception $exception) {
    throw $exception;
}

更多关于异常的内容,请查看我们的 PHP教程——异常

查看笔记

扫码一下
查看教程更方便