PHP try catch 如何使用
<?php
try {
if (file_exists('test_try_catch.php')) {
require ('test_try_catch.php');
} else {
throw new Exception('file is not exists');
}
} catch (Exception $e) {
echo $e->getMessage();
}
具体使用场景:
文章来源:外星人来地球
欢迎关注,有问题一起学习欢迎留言、评论
你要保守你心,胜过保守一切。
本文来自博客园,作者:刘俊涛的博客,转载请注明原文链接:https://www.cnblogs.com/lovebing/p/11505553.html