PHP OOP - 构造函数
PHP - __construct 函数
构造函数允许您在创建对象时初始化对象的属性。
如果您创建了 __construct()
函数,PHP 会在您从类创建对象时自动调用此函数。
请注意,构造函数以两个下划线(__)开头!
在下面的示例中,我们可以看到使用构造函数可以省去调用 `set_name()` 方法,从而减少代码量。
示例
<?php
class Fruit {
public $name;
public $color;
function __construct($name) {
$this->name = $name;
}
function get_name() {
return $this->name;
}
}
$apple = new Fruit("Apple");
echo $apple->get_name();
?>
自己试试 »
另一个示例
示例
<?php
class Fruit {
public $name;
public $color;
function __construct($name, $color) {
$this->name = $name;
$this->color = $color;
}
function get_name() {
return $this->name;
}
function get_color() {
return $this->color;
}
}
$apple = new Fruit("Apple", "red");
echo $apple->get_name();
echo "<br>";
echo $apple->get_color();
?>
自己试试 »