fork download
  1. <?php
  2. class Foo {
  3. public static function bar() {
  4. return "I am bar!";
  5. }
  6. }
  7.  
  8. $foo = new foo;
  9.  
  10. echo $foo->bar();
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
I am bar!