Result Size: 1264 x 19
x
 
<!DOCTYPE html>
<html>
<body>
<?php
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>
                
Фрукт - яблоко и его цвет красный.