<!DOCTYPE html>
<html>
<body>
<?php
class Fruit {
public $name;
public $color;
function __construct($name) {
$this->name = $name;
}
function __destruct() {
echo "Фрукт - {$this->name}.";
$apple = new Fruit("яблоко");
?>
</body>
</html>