运行 ❯
获取
自己
的 PHP 服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php class MyClass { protected $number = 0; } class AnotherClass extends MyClass { public function add1() { $this->number++; } public function getNumber() { return $this->number; } } $obj = new AnotherClass(); $obj->add1(); echo "The number is " . $obj->getNumber(); ?> </body> </html>
数字是 1