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

当异常被触发时,通常会发生:在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;);
?>

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));
?>

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();
}
?>

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

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();
    }
?>


文章地址:

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

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
PHP Fatal error: Uncaught exception 'Exception'解决方法PHP Fatal error: Uncaught exception 'Exception'解决方法Aug 18, 2023 pm 03:28 PM

PHP是一种广泛使用的服务器端编程语言,它可以为网站提供强大的动态功能。但是,在实践中,开发人员可能会遇到各种各样的错误和异常。其中一个常见的错误是PHPFatalerror:Uncaughtexception'Exception'。在本文中,我们将探讨这个错误的原因以及如何解决它。异常的概念在PHP中,异常是指程序在运行过程中遇到的意外情况,导致

PHP异常处理技巧:如何使用try...catch块捕获和处理多个异常PHP异常处理技巧:如何使用try...catch块捕获和处理多个异常Jul 29, 2023 pm 01:05 PM

PHP异常处理技巧:如何使用try...catch块捕获和处理多个异常引言:在PHP应用程序开发中,异常处理是非常重要的一环。当代码中发生错误或异常时,合理的异常处理能够提高程序的健壮性和可靠性。本文将介绍如何使用try...catch块捕获和处理多个异常,帮助开发者进行更加灵活和高效的异常处理。异常处理介绍异常是指在程序运行时产生的错误或特殊情况。当异常出

PHP程序中的异常分类最佳实践PHP程序中的异常分类最佳实践Jun 06, 2023 am 08:01 AM

在编写PHP代码时,异常处理是不可或缺的一部分,它可以使代码更加健壮和可维护。但是,异常处理也需要谨慎使用,否则就可能带来更多的问题。在这篇文章中,我将分享一些PHP程序中异常分类的最佳实践,以帮助你更好地利用异常处理来提高代码质量。异常的概念在PHP中,异常是指在程序运行时发生的错误或意外情况。通常情况下,异常会导致程序停止运行并输出异常信息。

使用PHP异常和容错机制的方法?使用PHP异常和容错机制的方法?Jun 30, 2023 am 10:13 AM

如何使用PHP的异常处理和容错机制?引言:在PHP编程中,异常处理和容错机制是非常重要的。当代码执行过程中出现错误或异常的时候,可以使用异常处理来捕获和处理这些错误,以保证程序的稳定性和可靠性。本文将介绍如何使用PHP的异常处理和容错机制。一、异常处理基础知识:什么是异常?异常是在代码执行过程中出现的错误或异常情况,包括语法错误、运行时错误、逻辑错误等。当异

如何在PHP后端功能开发中实现全局异常处理?如何在PHP后端功能开发中实现全局异常处理?Aug 05, 2023 pm 03:36 PM

如何在PHP后端功能开发中实现全局异常处理?在PHP后端开发中,异常处理是非常重要的一环。它可以帮助我们捕获程序中的错误,并进行适当的处理,从而提高系统的稳定性和性能。本文将介绍如何在PHP后端功能开发中实现全局异常处理,并提供相应的代码示例。PHP提供了异常处理的机制,我们可以通过try和catch关键字来捕获异常并进行相应的处理。全局异常处理指的是将所有

PHP实现API时如何处理数据异常和错误处理策略PHP实现API时如何处理数据异常和错误处理策略Jun 17, 2023 am 08:12 AM

随着API的使用越来越广泛,我们在开发和使用API过程中也需要考虑到数据异常和错误处理的策略。本文将探讨PHP实现API时如何处理这些问题。一、处理数据异常数据异常出现的原因可能有很多,比如用户输入错误、网络传输错误、服务器内部错误等等。在PHP开发时,我们可以使用以下方法来处理数据异常。返回合适的HTTP状态码HTTP协议定义了很多状态码,可以帮助我们在处

PHP时间处理异常:返回时间出错PHP时间处理异常:返回时间出错Mar 28, 2024 pm 01:51 PM

PHP时间处理异常:返回时间出错,需要具体代码示例在Web开发中,对时间的处理是一个很常见的需求。PHP作为一种常用的服务器端脚本语言,提供了丰富的时间处理函数和方法。然而,在实际应用中,有时会遇到返回时间出错的异常情况,这可能是由于代码中的错误或不当使用造成的。在本文中,我们将介绍一些可能导致返回时间出错的常见情况,并提供一些具体的代码示例来帮助读者更好地

php异常处理捕获有哪些错误php异常处理捕获有哪些错误Aug 01, 2023 pm 02:21 PM

php异常处理捕获的错误有:1、致命错误,会导致脚本的执行立即终止;2、严重错误,会导致脚本的执行中止;3、异常处理器,可以使用try-catch语句块来捕获抛出的异常;4、自定义错误处理函数,提供了一些内置的错误处理函数;5、错误日志记录,为了更好地跟踪和调试错误。

See all articles

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),