Новости/События Задача 99 с использованием класса 31.03.2021 Мончо Эсенанг Оставить комментарий name = $name; $this->race = $race; $this->breed = $breed; $this->age = $age; } public function displayPet(){ echo $this->name .''; echo $this -> breed. ''; echo $this -> race. ''; echo $this -> age. ''; echo $this -> priv. ''; } public function setPriv(string $priv){ $this->priv = $priv; } } $a = new Pet("Key","Dog", "Jack", 12); $a->displayPet(); ?> Results: KeyJackDog12No