fork(1) download
  1. <?php
  2. class A {
  3.  
  4. public function kek() {
  5. return "huy";
  6. }
  7. }
  8.  
  9. $a = new A();
  10.  
  11. echo "ti {$a->kek()}";
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
ti huy