php4中模拟类的析构函数实例分析
程序员文章站
2022-04-08 13:08:28
...
最近做的一个项目是基于PHP4的, 习惯了PHP5的面对对象,面对PHP4,难免会有很多不爽:
不支持public, static, private, protected关键字, 最郁闷的是,不支持析构函数:
本文就将借助PHP的register_shutdown_function来在PHP4中模拟类的析构函数
我们在构造函数中, 注册析构函数:
class sample{ var $identified; function sample($iden){ $this->identified = $iden; register_shutdown_function(array(&$this, 'destructor')); //模拟析构函数 } function destructor(){ error_log("destructor executing, Iden is ". $this->identified); unset($this); } } $sample = new sample("laruence"); $sample2 = new sample("HuiXinchen");
执行这个脚本, 你会发现, 对象的析构函数被正确的调用了.
因为我们在注册关闭函数的时候,使用了$this关键字, 所以,即使你的对面变量被覆盖了, 析构函数也是可以被正确调用的,比如:
class sample{ var $identified; function sample($iden){ $this->identified = $iden; register_shutdown_function(array(&$this, 'destructor')); //模拟析构函数 } function destructor(){ error_log("destructor executing, Iden is ". $this->identified); unset($this); } } $sample = new sample("laruence"); $sample = "laruence"; //覆盖对象变量
$sample被覆盖,但是运行这段脚本,你会发现析构函数还是可以被正确调用. 即使是下面的代码:
class sample{ var $identified; function sample($iden){ $this->identified = $iden; register_shutdown_function(array(&$this, 'destructor')); //模拟析构函数 } function destructor(){ error_log("destructor executing, Iden is ". $this->identified); unset($this); } } $sample = new sample("laruence"); unset($sample);
析构函数还是可以被正确调用.
以上就是php4中模拟类的析构函数实例分析的详细内容,更多请关注其它相关文章!
上一篇: PHP 魔术方法:__get __set
下一篇: PHP异常处理Exception类
推荐阅读
-
C++类的相关问题、构造函数与析构函数、复制构造函数实例讲解
-
C++中的new/delete、构造/析构函数、dynamic_cast分析
-
Python中的对象,方法,类,实例,函数用法分析
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
Python中的对象,方法,类,实例,函数用法分析
-
C++类的相关问题、构造函数与析构函数、复制构造函数实例讲解
-
关于PHP面向对象中—类的定义与对象的实例化操作以及构造、析构函数的特殊用法 - WORSHIP亚萨
-
PHP中__destruct(),类的析构函数详解
-
Python中的对象,方法,类,实例,函数用法分析
-
C++中的new/delete、构造/析构函数、dynamic_cast分析