运行 ❯
获取您
自己的 PHP
服务器
×
更改方向
更改主题,黑暗/明亮
前往 Spaces
<!DOCTYPE html> <html> <body> <?php trait message1 { public function msg1() { echo "OOP is fun! "; } } class Welcome { use message1 { message1::msg1 as msg; } } $obj = new Welcome(); $obj->msg(); ?> </body> </html>
面向对象编程很有趣!