当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP错误处理方法总结

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-28 09:35:43 浏览: 评论:0 

在php中错误处理的方法有很多,特别是到了php5之后还提供了专门的php处理类,下面我收藏了关于PHP错误处理一些方法与程序分享给大家.

在程序中直接判断,基本的错误处理:使用 die() 函数,第一个例子展示了一个打开文本文件的简单脚本,代码如下:

  1. <?php 
  2. $file=fopen("welcome.txt","r"); 
  3. ?> 

如果文件不存在,您会获得类似这样的错误:

Warning: fopen(welcome.txt) [function.fopen]: failed to open stream: No such file or directory in C:webfoldertest.php on line 2

更多详细的,代码如下:

  1. <?php 
  2.      
  3.     //打开一个文件 未做任何处理 
  4.     //$fp =fopen("aa.txt","r"); 
  5.     //echo "OK"; 
  6.  
  7.     //处理:判断文件是否存在 file_exists 
  8. /* 
  9.     if(!file_exists("aa.txt")){ 
  10.         echo "文件不存在"; 
  11.         //不存在就退出 
  12.         exit();  //退出后,下面面的代码就不执行了 
  13.     }else{ 
  14.         $fp =fopen("aa.txt","r"); 
  15.         //...操作完之后 关闭 
  16.         fclose($fp); 
  17.  
  18.     } 
  19.  
  20.     echo "OK"; 
  21. */ 
  22.     //PHP处理错误的3种方法 
  23.  
  24.     //第一种:使用简单的die语句 
  25.  
  26. /*    if(!file_exists("aa.txt")){ 
  27.      
  28.         die("文件不存在。。。"); //不存在就直接退出 
  29.     }else{//开源代码phpfensi.com 
  30.         $fp =fopen("aa.txt","r"); 
  31.         //...操作完之后 关闭 
  32.         fclose($fp); 
  33.  
  34.     } 
  35.  
  36.     echo "OK"; 
  37. */ 
  38.     //更简单的方式 
  39.     file_exists("aa.txt"or die("文件不存在"); 
  40.  
  41.  
  42. ?> 

第二种:错误处理器 错误级别 处理错误方式,代码如下:

  1. <?php 
  2.  
  3.     // 
  4.     /* 
  5.     使用error_function(error_level,error_message, 
  6.     error_file,error_line,error_context) 
  7.     该函数必须有能力处理至少两个参数 (error level 和 error message), 
  8.     但是可以接受最多五个参数(可选的:file, line-number 以及 error context): 
  9.  
  10.     */ 
  11.  
  12.     //改写set_error_handler方法 
  13.     //如果出现 E_WARNING 这个错误就调用my_error 处理方法 
  14.     set_error_handler("my_error",E_WARNING); 
  15.     set_error_handler("my_error2",E_USER_ERROR); 
  16.     //设置中国对应的时区 
  17.     date_default_timezone_set('PRC'); 
  18.      
  19.     function my_error($errno,$errmes){ 
  20.          
  21.         echo "<font size='5' color='red' >$errno</font>"//输出错误报告级别 
  22.         echo "错误信息是:".$errmes
  23.         exit(); 
  24.     } 
  25.  
  26.     function my_error2($errno,$errmes){ 
  27.          
  28.         //echo "错误信息是:".$errno,$errmes; 
  29.         //exit(); 
  30.         //把错误信息输入到文本中保存已备查看 使用到error_log()函数 
  31.         $message ="错误信息是:".$errno." ".$errmes
  32.         error_log(date("Y-m-d G:i:s")."---".$message."rn",3,"myerror.txt"); // rn 表示换行 
  33.     } 
  34.  
  35.     //打开一个文件 未做任何处理 
  36.  
  37.     //$fp =fopen("aa.txt","r"); 
  38.     //echo "OK"; 
  39.  
  40.     //使用自定义错误 要添加触发器 这个trigger_error()函数来指定调用自定义的错误 
  41.     $age=200; 
  42.     if($age>150){ 
  43.         //echo "年龄过大"; 
  44.         //调用触发器 同时指定错误级别 这里需要查看帮助文档 
  45.         trigger_error("不好了出大问题了",E_USER_ERROR); 
  46.         //exit(); 
  47.     } 
  48. ?> 

PHP 异常处理,PHP 5 提供了一种新的面向对象的错误处理方法

如果异常没有被捕获,而且又没用使用 set_exception_handler() 作相应的处理的话,那么将发生一个严重的错误(致命错误),并且输出 "Uncaught Exception" (未捕获异常)的错误消息.

让我们尝试抛出一个异常,同时不去捕获它,代码如下:

  1. <?php 
  2. //create function with an exception 
  3. function checkNum($number
  4.  { 
  5.  if($number>1) 
  6.   { 
  7.   throw new Exception("Value must be 1 or below"); 
  8.   } 
  9.  return true; 
  10.  } 
  11.  
  12. //trigger exception 
  13. checkNum(2); 
  14. ?> 

上面的代码会获得类似这样的一个错误:

Fatal error: Uncaught exception 'Exception' with message 'Value must be 1 or below' in C:webfoldertest.php:6 Stack trace: #0 C:webfoldertest.php(12): checkNum(28) #1 {main} thrown in C:webfoldertest.php on line 6Try, throw 和 catch

要避免上面例子出现的错误,我们需要创建适当的代码来处理异常.

处理处理程序应当包括:

1.Try - 使用异常的函数应该位于 "try" 代码块内,如果没有触发异常,则代码将照常继续执行,但是如果异常被触发,会抛出一个异常。

2.Throw - 这里规定如何触发异常,每一个 "throw" 必须对应至少一个 "catch"

3.Catch - "catch" 代码块会捕获异常,并创建一个包含异常信息的对象.

让我们触发一个异常,代码如下:

  1. <?php 
  2. //创建可抛出一个异常的函数 
  3. function checkNum($number
  4.  { 
  5.  if($number>1) 
  6.   { 
  7.   throw new Exception("Value must be 1 or below"); 
  8.   } 
  9.  return true; 
  10.  } 
  11.  
  12. //在 "try" 代码块中触发异常 
  13. try 
  14.  { 
  15.  checkNum(2); 
  16.  //If the exception is thrown, this text will not be shown 
  17.  echo 'If you see this, the number is 1 or below'
  18.  } 
  19.  
  20. //捕获异常 
  21. catch(Exception $e
  22.  { 
  23.  echo 'Message: ' .$e->getMessage(); 
  24.  } 
  25. ?> 

上面代码将获得类似这样一个错误:Message: Value must be 1 or below

创建一个自定义的 Exception 类,创建自定义的异常处理程序非常简单,我们简单地创建了一个专门的类,当 PHP 中发生异常时,可调用其函数,该类必须是 exception 类的一个扩展.

这个自定义的 exception 类继承了 PHP 的 exception 类的所有属性,您可向其添加自定义的函数.

我们开始创建 exception 类,代码如下:

  1. <?php 
  2. class customException extends Exception 
  3.  { 
  4.  public function errorMessage() 
  5.   { 
  6.   //error message 
  7.   $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile() 
  8.   .': <b>'.$this->getMessage().'</b> is not a valid E-Mail address'
  9.   return $errorMsg
  10.   } 
  11.  } 
  12.  
  13. $email = "someone@example...com"
  14.  
  15. try 
  16.  { 
  17.  //check if  
  18.  if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) 
  19.   { 
  20.   //throw exception if email is not valid 
  21.   throw new customException($email); 
  22.   } 
  23.  } 
  24.  
  25. catch (customException $e
  26.  { 
  27.  //display custom message 
  28.  echo $e->errorMessage(); 
  29.  } 
  30. ?> 

这个新的类是旧的 exception 类的副本,外加 errorMessage() 函数,正因为它是旧类的副本,因此它从旧类继承了属性和方法,我们可以使用 exception 类的方法,比如 getLine() 、 getFile() 以及 getMessage().

Tags: PHP错误处理 PHP错误方法

分享到:

相关文章