<html>
<body>
class Fruit {
public $name;
public $color;
public function __construct($name, $color) {
$this->name = $name;
$this->color = $color;
}
protected function intro() {
echo "水果是 {$this->name},颜色是 {$this->color}。";
}
}
class Strawberry extends Fruit {
public function message() {
echo "我是水果还是浆果? ";
// 从派生类内部调用受保护的方法 - 允许
$this -> intro();
}
}
$strawberry = new Strawberry("草莓", "红色"); // 允许。__construct() 是公共的
$strawberry->message(); // 允许。message() 是公共的,并且它在派生类内部调用了 intro()(受保护的)
</body>
</html>