fork download
  1. <?php
  2.  
  3. class Foo {
  4. function bar() {
  5. echo "Hi!\n";
  6. }
  7. }
  8.  
  9. $c = Foo::class;
  10. $m = 'bar';
  11. $c::$m();
  12.  
  13. echo "Done\n";
  14.  
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
Hi!
Done