当前位置:Gxlcms > PHP教程 > PHP之构造析构

PHP之构造析构

时间:2021-07-01 10:21:17 帮助过:3人阅读

在实例化一个新对象时,构造方法和析构方法都会被自动调用,若有继承则会使用父类的对应方法。

  • 析构方法在三种情况下会被调用:

    • 使用unset()销毁一个对象,若存在对象传值则不会被调用;
    • 改变变量指向对象的值;
    • php程序代码运行结束后。
classbase{public$name;

    function__construct($name){$this->name = $name;
        echo'obj '.$this->name.' have built'.'
'
.'
'
; } function__destruct(){echo'obj '.$this->name.' have destroyed'.'
'
.'
'
; } } $a = new base('a'); $b = new base('b'); $c = new base('c'); unset($b); $c = 'd';

PHP之构造析构

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP之构造析构,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行