- 本文地址: https://www.laruence.com/2008/09/04/498.html
- 转载请注明出处
最近做的一个项目是基于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);
析构函数还是可以被正确调用.
Tank’ You I like it Jual Burner Solar Rotary Dryer AMP
这种做法在register_shutdown_function的函数手册示例中看过,看的时候并没意识到可以破除php4对析构的限制,很有意思
[…] 没有访问权限控制, 没有析构函数(当然可以模拟), […]
[…] 没有访问权限控制, 没有析构函数(当然可以模拟), […]
验证码:move
这个做法很耗时,解析时间最长5s最短2s
验证码:move
这个做法很耗时,解析时间最长5s最短2s
验证码:move
这个做法很耗时,解析时间最长5s最短2s
发现还是有些问题,但是解决起来真是让人抓狂。写了篇文章在此:http://hi.baidu.com/horseluke/blog/item/943367b5923326df36d3ca97.html
发现还是有些问题,但是解决起来真是让人抓狂。写了篇文章在此:http://hi.baidu.com/horseluke/blog/item/943367b5923326df36d3ca97.html
发现还是有些问题,但是解决起来真是让人抓狂。写了篇文章在此:http://hi.baidu.com/horseluke/blog/item/943367b5923326df36d3ca97.html
[…] 没有访问权限控制, 没有析构函数(当然可以模拟), […]
[…] 没有访问权限控制, 没有析构函数(当然可以模拟), […]
[…] 没有访问权限控制, 没有析构函数(当然可以模拟), […]
PEAR和这个作法是一样的.
PEAR和这个作法是一样的.
顶Hack的做法!