摘要: 参考 http://php.net/manual/zh/language.exceptions.php http://php.net/manual/zh/reserved.exceptions.php (Exception类) http://www.runoob.com/php/php-except 阅读全文
posted @ 2018-12-21 11:10 JasonZhi 阅读(264) 评论(0) 推荐(0)
摘要: 一级目录 123123 1 function func1() 2 { 3 func2(); 4 } 5 6 function func2() 7 { 8 throw new Exception("get error"); 9 } 10 11 try { 12 func1(); 13 } catch 阅读全文
posted @ 2018-08-22 15:00 JasonZhi 阅读(101) 评论(0) 推荐(0)