Result Size: 1264 x 19
x
 
<!DOCTYPE html>
<html>
<body>
<?php
class Fruit {
  // Свойства
  public $name;
  public $color;
  // Методы
  function set_name($name) {
    $this->name = $name;
  }
  function get_name() {
    return $this->name;
  }
}
$apple = new Fruit();
var_dump($apple instanceof Fruit);
?>
</body>
</html>
                
bool(true)