Result Size: 1264 x 19
x
 
<!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>
                
Фрукт - яблоко.