欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP 编码规范(17)

程序员文章站 2022-06-17 12:50:43
...
6.9 try...catch语句

一个try-catch语句应该具有如下格式:
try {
  statements;
} catch (ExceptionClass e) {
  statements;
}

一个try-catch语句后面也可能跟着一个finally语句,不论try代码块是否顺利执行完,它都会被执行。
try {
  statements;
} catch (ExceptionClass e) {
  statements;
} finally {
  statements;
}