fork download
  1. <?php
  2.  
  3. new A;
  4.  
  5. class A {}
  6.  
  7. new C;
  8.  
  9. class C extends A {}
  10.  
  11. new B;
  12.  
  13. interface iB {}
  14. class B implements iB {}
Runtime error #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Standard output is empty