fork download
  1. <?php
  2.  
  3.  
  4. trait Hello
  5. {
  6. public static function world()
  7. {
  8. return "HELLO WORLD";
  9. }
  10. }
  11.  
  12.  
  13.  
  14. var_dump(Hello::world());
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
string(11) "HELLO WORLD"