fork(3) download
  1. <?php
  2.  
  3. class A {
  4. public $tmp;
  5.  
  6. public function __construct() {
  7. $this->tmp = function() {
  8. echo 1;
  9. };
  10. }
  11. }
  12.  
  13.  
  14. $a = new A();
  15. ($a->tmp)();
  16.  
Success #stdin #stdout 0.02s 23596KB
stdin
Standard input is empty
stdout
1