Выполнить »
×
Сменить ориентацию
name = $name; $this->color = $color; } public function intro() { echo "Фрукт {$this->name} цвет {$this->color}."; } } class Strawberry extends Fruit { public $weight; public function __construct($name, $color, $weight) { $this->name = $name; $this->color = $color; $this->weight = $weight; } public function intro() { echo "Фрукт {$this->name}, цвет {$this->color}, вес {$this->weight} грамм."; } } $strawberry = new Strawberry("Strawberry", "red", 50); $strawberry->intro(); ?>
Плод - клубника, цвет красный, вес - 50 грамм.