运行 ❯
获得您自己的 PHP
服务器
×
更改为横向
更改主题,明暗主题
进入 Spaces
<!DOCTYPE html> <html> <body> <?php class Fruit { public $name; public $color; function __construct($name, $color) { $this->name = $name; $this->color = $color; } function get_name() { return $this->name; } function get_color() { return $this->color; } } $apple = new Fruit("Apple", "red"); echo $apple->get_name(); echo "<br>"; echo $apple->get_color(); ?> </body> </html>
苹果
红色