trycatche
Posted 御世制人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了trycatche相关的知识,希望对你有一定的参考价值。
<?php
header("Content-type: text/html; charset=utf-8");
try{
$aaa = 0;
if ($aaa == 9) {
echo 9999;
} else {
throw new Exception(‘file is not exists‘);
}
} catch (Exception $e) {
print $e->getMessage();
exit();
}
?>
以上是关于trycatche的主要内容,如果未能解决你的问题,请参考以下文章