PHP OOP - 析构函数
PHP - __destruct 函数
析构函数在对象被销毁或脚本停止或退出时被调用。
如果你创建了一个 __destruct()
函数,PHP 将在脚本结束时自动调用此函数。
注意析构函数以两个下划线(__)开头!
下面的示例包含一个 __construct() 函数,它在从类创建对象时被自动调用,以及一个 __destruct() 函数,它在脚本结束时被自动调用
示例
<?php
class Fruit {
public $name;
public $color;
function __construct($name) {
$this->name = $name;
}
function __destruct() {
echo "水果是 {$this->name}。";
}
}
$apple = new Fruit("苹果");
?>
亲自试一试 »
另一个示例
示例
<?php
class Fruit {
public $name;
public $color;
function __construct($name, $color) {
$this->name = $name;
$this->color = $color;
}
function __destruct() {
echo "水果是 {$this->name},颜色是 {$this->color}。";
}
}
$apple = new Fruit("苹果", "红色");
?>
亲自试一试 »
提示:构造函数和析构函数有助于减少代码量,因此非常有用!