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;
}
http://www.bkjia.com/PHPjc/532587.htmlwww.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