Home > Backend Development > PHP Tutorial > PHP coding standards (17)_PHP tutorial

PHP coding standards (17)_PHP tutorial

WBOY
Release: 2016-07-13 17:20:12
Original
715 people have browsed it

6.9 try...catch statement

A try-catch statement should have the following format:
try {
statements;
} catch (ExceptionClass e) {
statements;
}

a try The -catch statement may also be followed by a finally statement, which will be executed regardless of whether the try code block is successfully executed.
try {
 statements;
} catch (ExceptionClass e) {
 statements;
} finally {
 statements;
}


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532587.htmlTechArticle6.9 try...catch statement A try-catch statement should have the following format: try { statements; } catch ( ExceptionClass e) { statements; } A try-catch statement may also be followed by a...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template