实例首页
自学教程
IT工具箱
源代码
点击运行 >
"; $this->name = "MyDestructableClass"; } function __destruct() { print "销毁 " . $this->name . "
"; } } $obj = new MyDestructableClass();
运行结果: