Выполнить »
×
Сменить ориентацию
name = $name; $this->color = $color; } protected function intro() { echo "Плод {$this->name} и цвет {$this->color}."; } } class Strawberry extends Fruit { public function message() { echo "Я фрукт или ягода? "; } } // Попробуйте вызвать все три метода из внешнего класса $strawberry = new Strawberry("Strawberry", "red"); // OK. __construct() is public $strawberry->message(); // OK. message() is public $strawberry->intro(); // ERROR. intro() is protected ?>
Я фрукт или ягода?