fork download
  1. <?php
  2. class MyClass
  3. {
  4. function createObject()
  5. {
  6. echo "creating object of class MyClass";
  7. }
  8. }
  9.  
  10. $bar = new MyClass;
  11. $bar->createObject();
  12. ?>
  13.  
Success #stdin #stdout 0.02s 25928KB
stdin
Standard input is empty
stdout
creating object of class MyClass