php中try{}catch{}是异常处理,将要执行的代码放入try块中,如果这些代码执行过程中某一条语句发生异常,则程序直接跳转到catch块中,由$e收集错误信息和显示。任何调用 可能抛出异常的方法的代码都应该使用try语句,catch语句用来处理可能抛出的异常。
< ?php
try {
$mgr = new commandmanager();
$cmd = $mgr->getcommandobject("realcommand");
$cmd->execute();
} catch (exception $e) {
print $e->getmessage();
exit();
}
相关推荐:
php中try{}和catch{}的具体使用方法
以上就是php中try{}和catch{}的用法详解的详细内容。