运行 ❯
获取自己的
PHP
服务器
×
转换方向
转换主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php class Fruit { // Properties public $name; public $color; // Methods 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)