PHP finally 关键字
示例
无论是否抛出异常,都运行一些代码
<?php
echo "开始处理。";
try {
// 在 0 和 1 之间随机选择,如果选择 1 则抛出异常。
$random = rand(0, 1);
if($random == 1) {
throw new Exception("异常");
}
} finally {
echo "处理完成";
}
?>
自己试试 »
定义和用法
The finally
keyword is used in try...finally
and try...catch...finally
structures to run a block of code whether or not an exception occurred.
相关页面
The throw
keyword.
The catch
keyword.
The finally
keyword.
阅读更多关于异常的内容,请访问我们的 PHP 异常教程.
❮ PHP 关键字