fork download
<?php
class Foo {
    public static function bar() {
        return "I am bar!";
    }
}

$foo = new foo;

echo $foo->bar();
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
I am bar!