fork download
  1. <?php
  2.  
  3. class View
  4. {
  5. public function render(callable $cb)
  6. {
  7. $cb();
  8. }
  9. }
  10.  
  11. $view = new View;
  12. $view->render(function(){echo '1';});
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
1