fork(1) download
  1. <?php
  2.  
  3. class TestClass {
  4. public function test() {
  5. echo __METHOD__;
  6. }
  7. }
  8.  
  9. $test = 'test';
  10. $obj = new TestClass;
  11. $obj->$test();
Success #stdin #stdout 0.01s 24400KB
stdin
Standard input is empty
stdout
TestClass::test