<?php class Product { public $name = "Хлеб"; public $money = "12.50"; public $ves = "0.50"; function getstr() { $str = "Купили: {$this->name} <br> Цена: {$this->money} <br> Вес: {$this->ves} <br>"; return $str; } } class buy extends Product { public $col = 5; function getstr() { $str = parent::getstr(); $str .= "Количество: {$this->col} шт."; return $str; } } $obj = new buy; echo $obj->getstr(); ?>