


The 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:
register_shutdown_function(function(){echo 'global';});
class A {
public function __construct(){
}
public function __destruct()
{
echo __class__,'::',__function__,'
';
}
}
new A;
Execution result:
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? !
class A {
public function __construct(){
Register_shutdown_function(function(){echo 'local', '
';});
}
public function __destruct()
{
echo __class__,'::',__function__,'
';
}
}
new A;
Result:
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:
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?
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:
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.
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.
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The Linux shutdown command shutdown can shut down the computer immediately. The root user only needs to execute the "shutdown -h now" command. The shutdown command can be used to perform the shutdown process and send messages to all programs being executed by users before shutting down. The shutdown command requires the system administrator root user to use it.

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

In a busy world, we want to automate things that you want to trigger on a regular basis or in a timely manner. Automation helps control tasks and reduces your effort in performing them. One of these tasks may be to shut down your computer. You may want your computer to shut down regularly, or you may want it to shut down at a specific time of day, or on specific days of the week, or you may want it to shut down all at once. Let's see how to set a timer so that the system shuts down automatically. Method 1: Use the Run dialog box Step 1: Press Win+R, type shutdown-s-t600 and click OK. Note: In the above command, 600 represents the time in seconds. You can change it as needed. It should always be in seconds, not minutes or hours

MySQL is a commonly used relational database management system that is widely used in various websites and applications. However, you may encounter various problems while using MySQL, one of which is MySQL closing unexpectedly. In this article, we will discuss how to solve MySQL error problems and provide some specific code examples. When MySQL shuts down unexpectedly, we should first check the MySQL error log to understand the reason for the shutdown. Usually, the MySQL error log is located in the MySQL installation directory.

What is the Linux scheduled shutdown command? When using a Linux system, we often need to schedule a shutdown, such as automatically shutting down after downloading a large number of files, or automatically shutting down the server when it is no longer in use. In Linux systems, scheduled shutdown can be implemented using the "shutdown" command. The "shutdown" command allows the user to shut down or restart the system and set a delay time. By adding parameters to the command, you can implement the scheduled shutdown function. The basic format of the command is as follows: shutdown

Destructors are crucial in C++ polymorphism, ensuring that derived class objects properly clean up memory when they are destroyed. Polymorphism allows objects of different types to respond to the same method call. The destructor is automatically called when an object is destroyed to release its memory. The derived class destructor calls the base class destructor to ensure that the base class memory is released.

In this article, we will learn about enumerate() function and the purpose of “enumerate()” function in Python. What is the enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumeration object. Enumeration objects are returned as key-value pairs. The key is the index corresponding to each item, and the value is the items. Syntax enumerate(iterable,start) Parameters iterable - The passed in data collection can be returned as an enumeration object, called iterablestart - As the name suggests, the starting index of the enumeration object is defined by start. if we ignore

Detailed explanation of the role and function of the MySQL.proc table. MySQL is a popular relational database management system. When developers use MySQL, they often involve the creation and management of stored procedures (StoredProcedure). The MySQL.proc table is a very important system table. It stores information related to all stored procedures in the database, including the name, definition, parameters, etc. of the stored procedures. In this article, we will explain in detail the role and functionality of the MySQL.proc table
