fork download
  1. <?php
  2.  
  3. class myTest {
  4. function yep() { return "yep!"; }
  5. }
  6.  
  7. $test = new myTest;
  8. echo $test->yep();
  9.  
  10. ?>
Success #stdin #stdout 0s 13112KB
stdin
Standard input is empty
stdout
yep!