fork download
  1. <?php
  2.  
  3. $a = (object) ['show' => function () { return 1;}];
  4. $prop = $a->show;
  5. echo $prop();
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
1