search
HomeBackend DevelopmentPHP TutorialThe order of execution of __destruct and register_shutdown_function in php, destruct_PHP tutorial

The order of execution of __destruct and register_shutdown_function in php, destruct

According to the analysis of php manual.

__destruct is

The destructor is executed when all references to an object are deleted or when the object is explicitly destroyed.

and register_shutdown_function is

Registers a callback to be executed after script execution finishes or exit() is called.

Literally understood, __destruct is at the object level, while register_shutdown_function is at the entire script level. Register_shutdown_function should be of a higher level, and the functions it registers should also be executed last. To confirm our guess, we write a script:

Copy code The code is as follows:

register_shutdown_function(function(){echo 'global';});
class A {
         public function __construct(){
}
        public function __destruct()
           {
echo __class__,'::',__function__,'
';
}
}
new A;

Execution result:

Copy code The code is as follows:

A::__destruct
global

Completely confirmed our guess, it was executed in the order of object->script.

But what if we register register_shutdown_function in the object? Is it still the same order? !

Copy code The code is as follows:

class A {
        public function __construct(){
Register_shutdown_function(function(){echo 'local', '
';});
}
        public function __destruct()
           {
echo __class__,'::',__function__,'
';
}
}
new A;

Result:

Copy code The code is as follows:

local
A::__destruct

You can see that register_shutdown_function is called first, and finally the __destruct of the execution object. This indicates that the function registered by register_shutdown_function is treated as a method in the class? ! I don't know, this may require viewing the php source code to parse it.

We can expand the scope to see the situation:

Copy code The code is as follows:

register_shutdown_function(function(){echo 'global', '
';});
    class A {
        public function __construct(){
            register_shutdown_function(array($this, 'op'));
        }
        public function __destruct()
        {
            echo __class__,'::',__function__,'
';
        }
        public function op()
        {
            echo __class__,'::',__function__,'
';
        }
    }
    class B {
        public function __construct()
        {
            register_shutdown_function(array($this, 'op'));
            $obj = new A;
        }
        public function __destruct()
        {
            echo __class__,'::',__function__,'
';
        }
        public function op()
        {
            echo __class__,'::',__function__,'
';
        }
    }
    $b = new B;

我们在全局注册一个register_shutdown_function函数,在类AB中又各注册了一个,而且类中分别还有析构方法。最后运行结果会怎样呢?

复制代码 代码如下:

global
B::op
A::op
A::__destruct
B::__destruct

结果完全颠覆了我们的想像,register_shutdown_function函数无论在类中注册还是在全局注册,它都是先被执行,类中执行的顺序就是它们被注册的先后顺序。如果我们再仔细研究,全局的register_shutdown_function函数无论放在前面还是后面都是这个结果,事情似乎有了结果,那就是register_shutdown_function比__destruct先执行,全局的register_shutdown_function函数又先于类中注册的register_shutdown_function先执行。

且慢,我无法接受这个结果,按照这样的结论,难道说脚本已经结束后还可以再执行__destruct?!因此,我还要继续验证这个结论---去掉类中注册register_shutdown_function,而保留全局register_shutdown_function:

复制代码 代码如下:

class A {
        public function __destruct()
        {
            echo __class__,'::',__function__,'
';
        }
    }
    class B {
        public function __construct()
        {
            $obj = new A;
        }
        public function __destruct()
        {
            echo __class__,'::',__function__,'
';
        }
    }
    register_shutdown_function(function(){echo 'global', '
';});

输出:

复制代码 代码如下:

A::__destruct
global
B::__destruct

The results are confusing. There is no doubt about the execution order of the destructors of classes A and B. Because A is called in B, class A must be destroyed before B, but how can the global register_shutdown_function function be sandwiched between them? be executed? ! Puzzling.

According to the analysis of the manual, the destructor can also be executed when exit is called.

The destructor is called even when the script is terminated using exit(). Calling exit() in the destructor will abort the remaining shutdown operations.

If exit is called in a function, how are they called?

Copy code The code is as follows:

class A {
        public function __construct(){
​​​​​​register_shutdown_function(array($this, 'op'));
exit;
}
        public function __destruct()
           {
echo __class__,'::',__function__,'
';
}
        public function op()
           {
echo __class__,'::',__function__,'
';
}
}
class B {
        public function __construct()
           {
​​​​​​register_shutdown_function(array($this, 'op'));
               $obj = new A;
}
        public function __destruct()
           {
echo __class__,'::',__function__,'
';
}
        public function op()
           {
echo __class__,'::',__function__,'
';
}
}
Register_shutdown_function(function(){echo 'global', '
';});
$b = new B;

Output:

Copy code The code is as follows:

global
B::op
A::op
B::__destruct
A::__destruct

This sequence is similar to the third example above. What is different and incredible is that the destructor of class B is executed before class A. Is it true that all references to class A are destroyed only after B is destroyed? ! unknown.

Conclusion:
1. Try not to mix register_shutdown_function and __destruct in scripts. Their behavior is completely unpredictable.
1. Because objects refer to each other, we cannot know when the object will be destroyed. When the content needs to be output in order, the content should not be placed in the destructor __destruct;
2. Try not to register register_shutdown_function in the class, because its order is difficult to predict (the function will only be registered when this object is called), and __destruct can completely replace register_shutdown_function;
3. If you need to perform relevant actions when the script exits, it is best to register register_shutdown_function at the beginning of the script and put all actions in a function.
Please correct me.

For the problem of php destructor __destruct()

The destructor is the code that is called when an object is destroyed.
When this object is used up, the statements in this function will be automatically executed.
Put the code to close the database here. That is, the database connection is closed when the object is destroyed.

Is the __destruct() destructor in PHP an empty method, or does it perform any work?

You can do some operations, such as closing files, closing databases, etc. For example, the word program is very stupid. It won't close by itself when you open a file. If you run it a few times and then open the task manager, you will see that there are many words in the process and you have to close it manually.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/895116.htmlTechArticleThe order of execution of __destruct and register_shutdown_function in php, destruct is analyzed according to the php manual. __destruct is a destructor that deletes all references to an object...
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
linux关机命令shutdown可以实现立刻关机吗linux关机命令shutdown可以实现立刻关机吗Jan 28, 2023 pm 05:26 PM

linux关机命令shutdown可以实现立刻关机,只需要root用户执行“shutdown -h now”命令即可。shutdown命令可以用来进行关机程序,并且在关机以前传送讯息给所有使用者正在执行的程序,shutdown命令需要系统管理者root用户来使用。

function是什么意思function是什么意思Aug 04, 2023 am 10:33 AM

function是函数的意思,是一段具有特定功能的可重复使用的代码块,是程序的基本组成单元之一,可以接受输入参数,执行特定的操作,并返回结果,其目的是封装一段可重复使用的代码,提高代码的可重用性和可维护性。

在 Windows 10 / 11 中设置自动关机的 3 种方法在 Windows 10 / 11 中设置自动关机的 3 种方法May 01, 2023 pm 10:40 PM

在繁忙的世界中,我们希望自动化一些您希望定期或及时触发的事情。自动化有助于控制任务并减少您执行任务的努力。其中一项任务可能是关闭您的计算机。您可能希望您的计算机定期关闭,或者您希望它在一天中的特定时间关闭,或者在一周中的特定日子关闭,或者您想要关闭一次。让我们看看如何设置计时器,以便系统自动关闭。方法一:使用运行对话框步骤1:按Win+R,键入shutdown-s-t600并单击OK。注意:在上面的命令中,600表示以秒为单位的时间。您可以根据需要更改它。它应该始终以秒为单位,而不是几分钟或几小

如何在Linux中设置定时关机命令如何在Linux中设置定时关机命令Feb 18, 2024 pm 11:55 PM

Linux定时关机命令是什么在使用Linux系统时,我们经常需要定时关机,比如在下载大量文件后自动关机,或者在服务器不再使用时自动关闭等。在Linux系统中,定时关机可以使用“shutdown”命令来实现。“shutdown”命令允许用户将系统关闭或重新启动,并设置一个延迟时间。通过在命令中添加参数,可以实现定时关机的功能。命令的基本格式如下:shutdow

MySQL shutdown unexpectedly - 如何解决MySQL报错:MySQL意外关闭MySQL shutdown unexpectedly - 如何解决MySQL报错:MySQL意外关闭Oct 05, 2023 pm 02:42 PM

MySQL是一款常用的关系型数据库管理系统,广泛应用于各种网站和应用中。然而,使用MySQL时可能会遇到各种问题,其中之一就是MySQL意外关闭。在这篇文章中,我们将讨论如何解决MySQL报错的问题,并提供一些具体的代码示例。当MySQL意外关闭时,我们首先应该查看MySQL的错误日志,以了解关闭的原因。通常,MySQL的错误日志位于MySQL安装目录的da

C++ 中析构函数在多态性中扮演什么角色?C++ 中析构函数在多态性中扮演什么角色?Jun 03, 2024 pm 08:30 PM

析构函数在C++多态性中至关重要,它确保派生类对象在销毁时正确清理内存。多态性允许不同类型的对象响应相同方法调用。析构函数在对象销毁时自动调用,释放其内存。派生类析构函数调用基类析构函数,确保释放基类内存。

"enumerate()"函数在Python中的用途是什么?"enumerate()"函数在Python中的用途是什么?Sep 01, 2023 am 11:29 AM

在本文中,我们将了解enumerate()函数以及Python中“enumerate()”函数的用途。什么是enumerate()函数?Python的enumerate()函数接受数据集合作为参数并返回一个枚举对象。枚举对象以键值对的形式返回。key是每个item对应的索引,value是items。语法enumerate(iterable,start)参数iterable-传入的数据集合可以作为枚举对象返回,称为iterablestart-顾名思义,枚举对象的起始索引由start定义。如果我们忽

MySQL.proc表的作用和功能详解MySQL.proc表的作用和功能详解Mar 16, 2024 am 09:03 AM

MySQL.proc表的作用和功能详解MySQL是一种流行的关系型数据库管理系统,开发者在使用MySQL时常常会涉及到存储过程(StoredProcedure)的创建和管理。而MySQL.proc表则是一个非常重要的系统表,它存储了数据库中所有的存储过程的相关信息,包括存储过程的名称、定义、参数等。在本文中,我们将详细解释MySQL.proc表的作用和功能

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 Tools

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),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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.