<html>
<body>
class Fruit {
// Свойства
var $name;
var $color;
// Методы
function __construct($name, $color) {
$this->name = $name;
$this->color = $color;
}
function __destruct() {
echo "Фрукт - {$this->name} и его цвет {$this->color}.";
}
}
$apple = new Fruit("яблоко", "красный");
</body>
</html>