search
HomeBackend DevelopmentPHP TutorialPHP 面向对象程序设计(oop)学习笔记 (四)

使用异常

PHP5 增加了类似其他语言的异常处理模块。在PHP代码中所产生的异常可被 throw 语句抛出并被 catch 语句捕获。需要进行异常处理的代码都必须放入到 try 代码块内,以便捕获可能存在的异常。每个try至少对应一个 catch 块。使用多个 catch 可以捕获不同的类所产生的异常。当 try 代码块不再抛出异常或者找不到 catch 能匹配所抛出的异常时,PHP 代码就会在跳转到最后一个 catch 的后面继续执行。当然,PHP 允许在 catch 代码块内再次抛出(throw)异常。

预定义异常 Exception

Exception 类是所有异常的基类,我们可以通过派生 Exception 类来达到自定义异常的目的。下面的清单列出了 Exception 的基本信息。

复制代码 代码如下:
Exception {
    /* 属性 */
    protected string $message ;        //异常消息内容
    protected int $code ;            //异常代码
    protected string $file ;        //抛出异常的文件名
    protected int $line ;            //抛出异常在该文件中的行号
    /* 方法 */
    public __construct ([ string $message = "" [, int $code = 0 [, Exception $previous = NULL ]]] )    //异常构造函数
    final public string getMessage ( void )            //获取异常消息内容
    final public Exception getPrevious ( void )        //返回异常链中的前一个异常
    final public int getCode ( void )                //获取异常代码
    final public string getFile ( void )            //获取发生异常的程序文件名称
    final public int getLine ( void )                //获取发生异常的代码在文件中的行号
    final public array getTrace ( void )            //获取异常追踪信息
    final public string getTraceAsString ( void )    //获取字符串类型的异常追踪信息
    public string __toString ( void )                //将异常对象转换为字符串
    final private void __clone ( void )                //异常克隆
}

了解完 Exception 后,我们来尝试扩展 exception 类来实现一个自定义异常。

复制代码 代码如下:
function connectToDatabase()
{   
    if(!$link = mysql_connect("myhost","myuser","mypassw","mybd"))
    {
        throw new Exception("could not connect to the database.");
    }
}
try
{
    connectToDatabase();
}
catch(Exception $e)
{echo $e->getMessage();
}

这里我们抛出类一个 Exception 类型的异常,并在catch里捕获了这个异常,最终打印出了“could not connect to the database.”。或许你想还想显示数据库连接失败的原因信息。下面及通过扩展exception类来实现我们的自定义信息。

复制代码 代码如下:
class MyException extends Exception
{
    protected $ErrorInfo;
    //构造函里处理一些逻辑,然后将一些信息传递给基类
    public function __construct($message=null,$code=0)
    {
        $this->ErrorInfo = '自定义错误类的错误信息';
        parent::__construct($message,$code);
    }   
    //提供获取自定义类信息的方法
    public function GetErrorInfo()
    {
        return $this->ErrorInfo;
    }
    /**
     *
     *这里还可以添加异常日志,只需在上面的构造函数里调用就可以了
     *
     */
    public function log($file)
    {
        file_put_contents($fiel,$this->__toString(),FILE_APPEND);
    }
}
function connectToDatabase()
{   
    throw new MyException("ErrorMessage");
}
try
{   
    connectToDatabase();
}
catch(MyException $e)
{   
    echo $e->getMessage() . "\n";
    echo $e->GetErrorInfo();
}

set_exception_handler 设置一个用户定义的异常处理函数

当一个未捕获的异常发生时所调用的函数名称作为set_exception_handler的参数。该函数必须在调用set_exception_handler()之前被定义。该函数接受一个参数,该参数是一个抛出的异常对象。这可以用来改进上边提到的异常记录日志处理。

复制代码 代码如下:
function ExceptionLogger($exception)
{
    $file='ExceptionLog.log';
    file_put_contents($fiel,$exception->__toString(),FILE_APPEND);
}
set_exception_handler(ExceptionLogger);

1.3、PHP 允许在 catch 代码块内再次抛出(throw)异常。

复制代码 代码如下:
try
{
    #code...
}
catch(Exception $e)
{
    if($e->getCode() == 999)
    {
        #进行一些操作
    }
    else
    {
        throw $e;
    }
}

总结

异常的功能非常强大,但是不以为着我们可以在项目中肆意的滥用异常机制,特别是大量使用异常日志的机制,这回大大增加系统系统开销降低应用程序的性能。利用错误代码我们可以方便的对错误信息进行管理,当一个错误信息被多次平抛出时,使用错误代码是科学的选择。我们甚至可以通过错误代码来让错误消息也支持多语言显示。

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
Java中的ConcurrentModificationException异常的产生原因和解决方法Java中的ConcurrentModificationException异常的产生原因和解决方法Jun 25, 2023 am 10:33 AM

在Java中,当多个线程同时操作一个集合对象时,有可能会发生ConcurrentModificationException异常,该异常通常发生在遍历集合时进行修改或者删除元素的操作,这会导致集合的状态出现不一致,从而抛出异常。本文将深入探讨该异常的产生原因和解决方法。一、异常产生原因通常情况下,ConcurrentModificationException异

Java中的UnsupportedEncodingException异常该如何处理?Java中的UnsupportedEncodingException异常该如何处理?Jun 25, 2023 am 08:02 AM

Java中的UnsupportedEncodingException异常该如何处理?在Java编程中,可能会遇到UnsupportedEncodingException异常。这个异常通常是由于编码转换不正确或编码不支持造成的。在这篇文章中,我们将介绍UnsupportedEncodingException异常的原因和如何处理它。什么是UnsupportedE

PHP Fatal error: Uncaught exception ‘PDOException’的解决方法PHP Fatal error: Uncaught exception ‘PDOException’的解决方法Jun 23, 2023 pm 12:09 PM

在PHP开发中,可能会遇到“PHPFatalerror:Uncaughtexception‘PDOException’”这样的错误,这是由于PHP操作数据库的时候出现了错误所引发的异常。如果不及时处理这个错误,就会导致程序中断或者出现无法预期的错误。那么如何解决这个问题呢?下面是一些常见的解决方法。一、检查数据库参数首先,我们需要检查连接数据库时传

Java中的ConcurrentModificationException异常常见原因是什么?Java中的ConcurrentModificationException异常常见原因是什么?Jun 25, 2023 am 11:07 AM

Java中的ConcurrentModificationException异常常见原因是什么?当在使用Java集合框架中迭代器遍历集合的时候,有时候会抛出ConcurrentModificationException异常,这是常见的Java异常之一。那么,这个异常的产生是什么原因呢?首先,我们需要了解Java集合框架提供的迭代器是有状态的。也就是说,在遍历时

Java中的ArrayStoreException异常的常见原因是什么?Java中的ArrayStoreException异常的常见原因是什么?Jun 25, 2023 am 09:48 AM

在Java编程中,数组是一种重要的数据结构。数组可以在一个变量中存储多个值,更重要的是可以使用索引访问每个值。但是在使用数组时,可能会出现一些异常,其中之一是ArrayStoreException。本文将讨论ArrayStoreException异常的常见原因。1.类型不匹配数组在创建时必须指定元素类型。当我们试图将不兼容的数据类型存储到一个数组中时,就会抛

在Java中,Exception类和Error类之间有什么区别?在Java中,Exception类和Error类之间有什么区别?Sep 09, 2023 pm 12:05 PM

Exception类和Error类都是java.lang.Throwable类的子类,我们可以处理运行时的异常,但不能处理错误。异常是代表运行时发生的逻辑错误的对象,使JVM进入“歧义”状态。JVM自动创建的用于代表这些运行时错误的对象被称为异常。Error是Throwable类的子类,它指示合理的应用程序不应尝试捕获的严重问题。大多数此类错误都是异常情况。如果发生异常,我们可以使用try和catch块来处理它。如果发生错误我们无法处理,程序就会终止。异常有两种类型,一种是CheckedExce

Java中的UnsupportedEncodingException异常的解决方法Java中的UnsupportedEncodingException异常的解决方法Jun 25, 2023 am 08:48 AM

Java中可能会出现UnsupportedEncodingException异常,主要是因为编码不被支持导致。在处理文本数据时,经常需要进行编码转换,也就是把一种编码格式的内容转换成另一种编码格式的内容。而如果进行编码转换时使用的编码类型不被支持,就会抛出UnsupportedEncodingException异常。本文将介绍该异常的解决方法。一、

Java中的StringIndexOutOfBoundsException异常常见原因是什么?Java中的StringIndexOutOfBoundsException异常常见原因是什么?Jun 25, 2023 pm 12:51 PM

Java是一种使用广泛的编程语言,随着软件使用的不断增多,Java程序的错误也越来越常见。其中,StringIndexOutOfBoundsException异常是比较常见的一种异常类型之一。StringIndexOutOfBoundsException异常通常是由于程序尝试使用一个不存在的索引或在字符串的末尾使用一个过大的索引而导致的。这个异常很容易在字符

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor