Php 异常处理 exception
<?php $a = null; //没有接收一场处理 if($a == 0) { throw new DbException(‘val is empty‘); } exit(); // 接收异常并处理 try { if($a == 0) { throw new DbException(‘val is empty‘); } } catch (DbException $e) { echo $e->showMessage(); //输出异常信息。 } // 记录异常,定义不同类型异常处理 class DbException extends Exception{ public function __construct ($message = ‘参数异常‘, $code = 0) { parent::__construct($message, $code); } public function showMessage() { $msg = $this->getMessage(); file_put_contents(‘./info.txt‘, ‘Exception:‘ . $msg . "\n file:" . $this->getFile() . "\n line:" . $this->getLine() . "\n Trac:" . var_export($this->getTrace(), true), FILE_APPEND); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。