运行 ❯
获取您的
自己的 PHP
服务器
×
调整方向
更换主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php class Fruit { public $name; public $color; function __construct($name) { $this->name = $name; } function get_name() { return $this->name; } } $apple = new Fruit("Apple"); echo $apple->get_name(); ?> </body> </html>
苹果