fork download
  1. <?php
  2.  
  3. class Test {
  4. public function method() {
  5. echo 'hello';
  6. }
  7. }
  8.  
  9. (new Test())->method();
Success #stdin #stdout 0.01s 24772KB
stdin
Standard input is empty
stdout
hello