Home  >  Article  >  Backend Development  >  PHP错误处理方法总结_PHP教程

PHP错误处理方法总结_PHP教程

WBOY
WBOYOriginal
2016-07-20 11:12:01914browse

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

在程序中直接判断

基本的错误处理:使用 die() 函数
第一个例子展示了一个打开文本文件的简单脚本:

 代码如下 复制代码

$file=fopen("welcome.txt","r");
?>

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

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

更多详细的

 代码如下 复制代码

   
    //打开一个文件 未做任何处理
    //$fp =fopen("aa.txt","r");
    //echo "OK";

    //处理:判断文件是否存在 file_exists
/*
    if(!file_exists("aa.txt")){
        echo "文件不存在";
        //不存在就退出
        exit();  //退出后,下面面的代码就不执行了
    }else{
        $fp =fopen("aa.txt","r");
        //...操作完之后 关闭
        fclose($fp);

    }

    echo "OK";
*/
    //PHP处理错误的3种方法

    //第一种:使用简单的die语句

/*    if(!file_exists("aa.txt")){
   
        die("文件不存在。。。"); //不存在就直接退出
    }else{
        $fp =fopen("aa.txt","r");
        //...操作完之后 关闭
        fclose($fp);

    }

    echo "OK";
*/
    //更简单的方式
    file_exists("aa.txt") or die("文件不存在");


?>

第二种:错误处理器 错误级别 处理错误方式

 代码如下 复制代码

    //
    /*
    使用error_function(error_level,error_message,
    error_file,error_line,error_context)
    该函数必须有能力处理至少两个参数 (error level 和 error message),
    但是可以接受最多五个参数(可选的:file, line-number 以及 error context):

    */

    //改写set_error_handler方法
    //如果出现 E_WARNING 这个错误就调用my_error 处理方法
    set_error_handler("my_error",E_WARNING);
    set_error_handler("my_error2",E_USER_ERROR);
    //设置中国对应的时区
    date_default_timezone_set('PRC');
   
    function my_error($errno,$errmes){
       
        echo "$errno"; //输出错误报告级别
        echo "错误信息是:".$errmes;
        exit();
    }

    function my_error2($errno,$errmes){
       
        //echo "错误信息是:".$errno,$errmes;
        //exit();
        //把错误信息输入到文本中保存已备查看 使用到error_log()函数
        $message ="错误信息是:".$errno." ".$errmes;
        error_log(date("Y-m-d G:i:s")."---".$message."rn",3,"myerror.txt"); // rn 表示换行
    }

    //打开一个文件 未做任何处理

    //$fp =fopen("aa.txt","r");
    //echo "OK";

    //使用自定义错误 要添加触发器 这个trigger_error()函数来指定调用自定义的错误
    $age=200;
    if($age>150){
        //echo "年龄过大";
        //调用触发器 同时指定错误级别 这里需要查看帮助文档
        trigger_error("不好了出大问题了",E_USER_ERROR);
        //exit();
    }


?>

PHP 异常处理

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


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

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

 代码如下 复制代码

//create function with an exception
function checkNum($number)
 {
 if($number>1)
  {
  throw new Exception("Value must be 1 or below");
  }
 return true;
 }

//trigger exception
checkNum(2);
?>

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

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" 代码块会捕获异常,并创建一个包含异常信息的对象
让我们触发一个异常:

 代码如下 复制代码

//创建可抛出一个异常的函数
function checkNum($number)
 {
 if($number>1)
  {
  throw new Exception("Value must be 1 or below");
  }
 return true;
 }

//在 "try" 代码块中触发异常
try
 {
 checkNum(2);
 //If the exception is thrown, this text will not be shown
 echo 'If you see this, the number is 1 or below';
 }

//捕获异常
catch(Exception $e)
 {
 echo 'Message: ' .$e->getMessage();
 }
?>

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

Message: Value must be 1 or below

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

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

我们开始创建 exception 类:

 代码如下 复制代码

class customException extends Exception
 {
 public function errorMessage()
  {
  //error message
  $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile()
  .': '.$this->getMessage().' is not a valid E-Mail address';
  return $errorMsg;
  }
 }

$email = "someone@example...com";

try
 {
 //check if
 if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE)
  {
  //throw exception if email is not valid
  throw new customException($email);
  }
 }

catch (customException $e)
 {
 //display custom message
 echo $e->errorMessage();
 }
?>

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


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444611.htmlTechArticle在php中错误处理的方法有很多,特别是到了php5之后还提供了专门的php处理类,下面我收藏了关于PHP错误处理一些方法与程序分享给大家。...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn