目录

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();
?>
亲自试一试 »