與java不同,在php中,異常必須手動拋出.
拋出並捕獲一個異常,示例:
<?php try{ throw new <strong>Exception("A terrible error has occurred",42); }catch (<strong>Exception</strong> $e){ echo "<strong>Exception</strong> ".$e->getCode().":".$e->getMessage()."<br>"."in".$e->getFile()." on line".$e->getLine()."<br>"; }
Exception類別的內建方法:
getCode()——傳回傳遞給建構子的程式碼;給狗仔函數的訊息;
getFile()-傳回產生異常的程式碼檔案的完整路徑;
getLine()-傳回;
getTrance-傳回一個包含了產生異常的程式碼回退路徑的陣列;
getTranceAsString-傳回與getTrance()方向相同的訊息,該訊息將會被一個方向相同的訊息,一個訊息會被格式化字串;
__toString()——允許簡單地顯示一個Exception物件,並且給出以上所有方法可以提供的資訊。
<?php //自定义异常 class my<strong>Exception extends <strong>Exception</strong>{ function __toString(){ return "<strong>Exception</strong> ".$this->getCode().":".$this->getMessage()."<br>"."in".$this->getFile()." on line".$this->getLine()."<br>"; } } try{ throw new my<strong>Exception</strong>("A terrible error has occurred",42); }catch (my<strong>Exception</strong> $m){ echo $m; }
一個應用異常處理的範例:檔案I/O處理 首先需要建立一個異常類別的檔案:file_Exception.php
<?php //自定义文件打开异常 class fileOpen<strong>Exception extends <strong>Exception</strong>{ function __toString(){ return "fileOpen<strong>Exception</strong> ".$this->getCode().":".$this->getMessage()."<br>"."in".$this->getFile()." on line".$this->getLine()."<br>"; } } //自定义无法写入异常 class fileWrite<strong>Exception</strong> extends <strong>Exception</strong>{ function __toString(){ return "fileWrite<strong>Exception</strong> ".$this->getCode().":".$this->getMessage()."<br>"."in".$this->getFile()." on line".$this->getLine()."<br>"; } } //自定义无法获得写锁异常 class fileLock<strong>Exception</strong> extends <strong>Exception</strong>{ function __toString(){ return "fileLock<strong>Exception</strong> ".$this->getCode().":".$this->getMessage()."<br>"."in".$this->getFile()." on line".$this->getLine()."<br>"; } }
<strong>require</strong>_once ("file_<strong>Exception</strong>.php");
異常處理關鍵程式碼:
//设置文件输出内容和格式 $out_put_string=$date."\t".$cloths."件男装\t".$shoes."双鞋子\t".$glasses."副眼镜\t\总价:¥".$total_amount." 收货地址:\t".$address."\n"; //<strong>异常处理</strong> try{ //打开文件,(追加模式+二进制模式) if(!($fp=@fopen("$DOCUMENT_ROOT/L02/files/orders.txt",'ab'))) throw new fileOpen<strong>Exception</strong>(); //写操作锁定 if(!flock($fp,LOCK_EX)) throw new fileLock<strong>Exception</strong>(); //将数据写入到文件 if(!fwrite($fp,$out_put_string,strlen($out_put_string))) throw new fileWrite<strong>Exception</strong>(); //释放已有的锁定 flock($fp,LOCK_UN); //关闭文件流 fclose($fp); echo "<p>数据保存完成</p>"; }catch (fileOpen<strong>Exception</strong> $foe){ echo "<p><strong>文件打开失败,请查看服务器是否异常!</strong></p>"; exit; }catch(<strong>Exception</strong> $e){ echo "<p><strong>您的订单没有提交完成,请再试一次。</strong></p>"; exit; }
以上就介紹了php的錯誤和異常處理,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。