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

PHP coding standards (17)_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 17:20:12722browse

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...
Statement:
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