fork download
  1. <?php
  2.  
  3. class Foo {
  4. public function method()
  5. {
  6. echo __FUNCTION__ ;
  7. }
  8. }
  9.  
  10. $f = new Foo();
  11. $f->method();
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
method