Home php教程 php手册 php中异常处理方法总结

php中异常处理方法总结

May 25, 2016 pm 04:39 PM
php exception handling

当异常被触发时,通常会发生:在PHP5中添加了类似于其它语言的错误异常处理模块。在 PHP代码中所产生的异常可被 throw语句抛出并被 catch 语句捕获。需要进行异常处理的代码都必须放入 try 代码块内,以便捕获可能存在的异常。每一个 try 至少要有一个与之对应的 catch。

使用多个 catch 可以捕获不同的类所产生的异常,当 try 代码块不再抛出异常或者找不到 catch 能匹配所抛出的异常时,PHP 代码就会在跳转到最后一个 catch 的后面继续执行。当然,PHP 允许在 catch 代码块内再次抛出(throw)异常,当一个异常被抛出时,其后(译者注:指抛出异常时所在的代码块)的代码将不会继续执行,而 PHP 就会尝试查找第一个能与之匹配的 catch,如果一个异常没有被捕获,而且又没用使用 set_exception_handler() 作相应的处理的话,那么 PHP 将会产生一个严重的错误,并且输出 Uncaught Exception ... (未捕获异常)的提示信息.

1、异常类的层级关系,代码如下:

class NotFoundException extends Exception{}

class InputException extends Exception{}

class DBException extends Exception{}

2、配置未捕捉异常的处理器,代码如下:

<?php
function exception_uncaught_handler(Exception $e) {
    header(&#39;Content-type:text/html; charset=utf-8&#39;);
    if ($e instanceof NotFoundException) exit($e->getMessage());
    elseif ($e instanceof DBException) exit($e->getMessage());
    else exit($e->getMessage());
}
set_exception_handler(&#39;exception_uncaught_handler&#39;);
?>
Copy after login

3、在数据库连接代码,手动抛出DBException异常但未使用try…catch进行捕获处理,该异常将被PHP自定义异常处理器,exception_uncaught_handler()函数处理:

<?php
$this->resConn = mysql_connect($CONFIGS[&#39;db_host&#39;], $CONFIGS[&#39;db_user&#39;], $CONFIGS[&#39;db_pwd&#39;]);
if (false == is_resource($this->resConn)) throw new DBException(&#39;数据库连接失败。&#39; . mysql_error($this->resConn));
?>
Copy after login

4、业务逻辑一瞥:

if (0 != strcmp($curAlbum->interest_id, $it))

throw new NotFoundException('很抱歉,你所访问的相册不存在');

以上就是PHP自定义异常处理器的具体使用方法.

php实例代码如下:

<?php
class customException extends Exception {
    public function errorMessage() {
        //error message
        $errorMsg = &#39;Error on line &#39; . $this->getLine() . &#39; in &#39; . $this->getFile() . &#39;: <b>&#39; . $this->getMessage() . &#39;</b> is not a valid E-Mail address&#39;;
        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);
    }
    //check for "example" in mail address
    if (strpos($email, "example") !== FALSE) {
        throw new Exception("$email is an example e-mail");
    }
}
catch(customException $e) {
    echo $e->errorMessage();
}
catch(Exception $e) {
    echo $e->getMessage();
}
?>
Copy after login

例子解释:上面的代码测试了两种条件,如何任何条件不成立,则抛出一个异常.

1.customException() 类是作为旧的 exception 类的一个扩展来创建的,这样它就继承了旧类的所有属性和方法.

2.创建 errorMessage() 函数,如果 e-mail 地址不合法,则该函数返回一个错误消息.

3.执行 "try" 代码块,在第一个条件下,不会抛出异常.

4.由于 e-mail 含有字符串 "example",第二个条件会触发异常.

5."catch" 代码块会捕获异常,并显示恰当的错误消息.

如果没有捕获 customException,紧紧捕获了 base exception,则在那里处理异常,重新抛出异常,有时,当异常被抛出时,您也许希望以不同于标准的方式对它进行处理,可以在一个 "catch" 代码块中再次抛出异常,代码如下:

总结:PHP异常的使用方法分三步:

第一步:定义异常类,如果不定义就用系统默认的异常类;

第二步:当出现异常时用 throw 抛出异常,例如 ex1($num2);异常的参数是$num2用该异常的getMessage()获取;

第三步:触发异常,用try子句,当满足条件时 throw new ex1($num);

第四步:catch捕获异常 catch (ex2 $e),相当于实例化一个定义好的异常类ex2为$e;

注意,异常可以定义多个,但是只能触发一个,也就是说只能用catch捕获一个异常.

基本异常类,创建可抛出一个异常的函数:

<?php
function num($num) {
    if ($num > 1) { //异常抛出条件
        $msg = "数值不能大于1″;//异常提示信息 
  throw new Exception($msg);//抛出异常 
 } 
 echo "数值小于1″;
    }
    //在 "try" 代码块中触发异常
    try {
        num(3);
        echo "执行正常";
    }
    //捕获异常
    catch(Exception $e) {
        echo "错误信息:" . $e->getMessage(); //Exception()的系统方法获取异常信息
        echo "错误文件:" . $e->getFile(); //Exception()的系统方法获取异常文件名
        echo "行数:" . $e->getLine(); //Exception()的系统方法获取异常行数
        
    }
    //======================================================================
    echo "<br>========================================================<br>";
    //扩展基本异常类
    function checkEmail($email) { //定义一个可以抛出异常的判断EMAIL合法性的函数
        if (filter_var($email, FILTER_VALIDATE_EMAIL) == false) {
            throw new checkEmailException($email); //抛出异常用EMAIL做参数
            
        }
        echo "邮件合法";
    }
    class checkEmailException extends Exception { //定义扩展异常类
        public function errormsg() {
            $msg = "错误原因:" . $this->getMessage() . "不是一个合法的EMAIL地址!";
            $msg.= "错误文件名:" . $this->getFile();
            $msg.= "错误行数:" . $this->getLine();
            echo $msg;
        }
    }
    $email = "email…..@chhua.com";
    try { //触发异常
        checkEmail($email);
    }
    //捕获异常
    catch(checkEmailException $e) {
        $e->errormsg();
    }
    //==================================多个异常的捕获
    echo "<br>===================================================<br>";
    class ex1 extends Exception { //定义一个异常类
        public function msg() {
            $msg = "错误原因:" . $this->getMessage() . "大于100<br>";
            $msg.= "错误文件:" . $this->getFile() . "<Br>";
            $msg.= "错误代码:" . $this->getCode() . "<br>";
            $msg.= "行数:" . $this->getLine() . "<br>";
            echo $msg;
        }
    }
    class ex2 extends Exception { //定义一个异常类
        public function msg() {
            $msg = "错误原因:" . $this->getMessage() . "等于100<br>";
            $msg.= "错误文件:" . $this->getFile() . "<Br>";
            $msg.= "行数:" . $this->getLine() . "<br>";
            echo $msg;
        }
    }
    $num2 = 100;
    try {
        if ($num2 > 100) { //当条件满足时触发
            throw new ex1($num2);
        }
        if ($num2 == 100) { //当条件满足时触发
            throw new ex2($num2);
        }
    }
    catch(ex2 $e) { //捕获触发的异常
        $e->msg();
    }
    catch(ex1 $e) { //捕获触发的异常
        $e->msg();
    }
?>
Copy after login


文章地址:

转载随意^^请带上本文地址!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP Fatal error: Uncaught exception 'Exception' solution PHP Fatal error: Uncaught exception 'Exception' solution Aug 18, 2023 pm 03:28 PM

PHP is a widely used server-side programming language that provides powerful and dynamic capabilities to websites. However, in practice, developers may encounter a wide variety of errors and exceptions. One of the common errors is PHPFatalerror:Uncaughtexception'Exception'. In this article, we will explore the causes of this error and how to fix it. The concept of exception In PHP, exception refers to the unexpected situation encountered during the running process of the program, resulting in

PHP exception handling tips: How to catch and handle multiple exceptions using try...catch blocks PHP exception handling tips: How to catch and handle multiple exceptions using try...catch blocks Jul 29, 2023 pm 01:05 PM

PHP exception handling tips: How to use try...catch blocks to catch and handle multiple exceptions Introduction: In PHP application development, exception handling is a very important part. When an error or exception occurs in the code, reasonable exception handling can improve the robustness and reliability of the program. This article will introduce how to use the try...catch block to capture and handle multiple exceptions, helping developers perform more flexible and efficient exception handling. Introduction to Exception HandlingExceptions refer to errors or special situations that occur when a program is running. When an exception occurs

Best practices for exception classification in PHP programs Best practices for exception classification in PHP programs Jun 06, 2023 am 08:01 AM

When writing PHP code, exception handling is an integral part of making the code more robust and maintainable. However, exception handling also needs to be used with caution, otherwise it may cause more problems. In this article, I will share some best practices for exception classification in PHP programs to help you make better use of exception handling to improve code quality. The concept of exception In PHP, exception refers to an error or unexpected situation that occurs when the program is running. Typically, exceptions cause the program to stop running and output an exception message.

Ways to use PHP exception and fault tolerance mechanisms? Ways to use PHP exception and fault tolerance mechanisms? Jun 30, 2023 am 10:13 AM

How to use PHP's exception handling and fault tolerance mechanism? Introduction: In PHP programming, exception handling and fault tolerance mechanisms are very important. When errors or exceptions occur during code execution, exception handling can be used to capture and handle these errors to ensure program stability and reliability. This article will introduce how to use PHP's exception handling and fault tolerance mechanism. 1. Basic knowledge of exception handling: What is an exception? Exceptions are errors or abnormal conditions that occur during code execution, including syntax errors, runtime errors, logic errors, etc. When different

How to implement global exception handling in PHP backend function development? How to implement global exception handling in PHP backend function development? Aug 05, 2023 pm 03:36 PM

How to implement global exception handling in PHP backend function development? In PHP back-end development, exception handling is a very important part. It can help us catch errors in the program and handle them appropriately, thereby improving system stability and performance. This article will introduce how to implement global exception handling in PHP back-end function development and provide corresponding code examples. PHP provides an exception handling mechanism. We can catch exceptions and handle them accordingly through the try and catch keywords. Global exception handling refers to all

How to handle data exceptions and error handling strategies when implementing APIs in PHP How to handle data exceptions and error handling strategies when implementing APIs in PHP Jun 17, 2023 am 08:12 AM

As the use of APIs becomes more and more widespread, we also need to consider data exception and error handling strategies during the development and use of APIs. This article will explore how PHP handles these issues when implementing APIs. 1. Handling data anomalies There may be many reasons for data anomalies, such as user input errors, network transmission errors, internal server errors, etc. When developing in PHP, we can use the following methods to handle data exceptions. Return the appropriate HTTP status code. The HTTP protocol defines many status codes that can help us

PHP time processing exception: error returning time PHP time processing exception: error returning time Mar 28, 2024 pm 01:51 PM

PHP time processing exception: error in returning time, specific code examples are needed. In web development, time processing is a very common requirement. As a commonly used server-side scripting language, PHP provides a wealth of time processing functions and methods. However, in practical applications, sometimes you encounter abnormal situations where the return time is wrong, which may be caused by errors in the code or improper use. In this article, we will introduce some common situations that may cause return time errors and provide some specific code examples to help readers better understand

What errors are caught in php exception handling? What errors are caught in php exception handling? Aug 01, 2023 pm 02:21 PM

The errors captured by PHP exception handling are: 1. Fatal error, which will cause the execution of the script to terminate immediately; 2. Serious error, which will cause the execution of the script to be terminated; 3. Exception handler, you can use the try-catch statement block to catch the throw Exceptions; 4. Custom error handling functions, providing some built-in error handling functions; 5. Error logging, in order to better track and debug errors.

See all articles