• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php4中模拟类的析构函数实例分析

php 搞代码 3年前 (2022-01-22) 33次浏览 已收录 0个评论

最近做

本文来*源gaodai^.ma#com搞#代!码网
搞gaodaima代码

的一个项目是基于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中模拟类的析构函数实例分析的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php4中模拟类的析构函数实例分析

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址