运行 ❯
获得您自己的
PHP
服务器
×
更改方位
更改主题,深色/浅色
前往 W3Schools Spaces
<!DOCTYPE html> <html> <body> <?php abstract class MyClass { public function hello() { echo "Hello World!"; } } class AnotherClass extends MyClass { } $item = new AnotherClass(); $item->hello(); ?> </body> </html>
Hello, world!