<?php
class Person{
public $name;
public function __construct($name){
$this->name = $name;
echo $name.'出生了。。。。<br/>';
}
//析构方法
//在对象销毁的时候自动调用 作用 回收资源 写遗言
public function __destruct(){
echo $this->name.'凉凉了....<br/>';
}
}
$p = new Person('西门大官人');
//手动销毁对象
unset($p);
echo '昨天不知道你们看没看新闻 国足赢了!好厉害呀!<br/>';点击 "运行实例" 按钮查看在线实例
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号