1.手册:
在脚本执行完毕,已经发送出PHP报头时,执行;
<?php class Test{ public $a="---"; public function ccc(){ echo "1"; } function __destruct(){ echo $this->a; } }$a = new Test();$a->ccc();$a = new Test();$a->a='===';$a->ccc(); ?>
__destruct 是析构函数,他在对象销毁时执行
当你在第18行 $a = new Test(); 时
第16 行 $a = new Test(); 的对象 $a 就被销毁了(因为赋了新值)
你把第 18 行改成 $a = 123; 看得就更清楚了