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