Guest User

Untitled

a guest
Apr 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. class Foo {
  4.  
  5.         public function bar()
  6.         {
  7.                 return function () {
  8.                         return array('ok');
  9.                 };
  10.  
  11.         }
  12.  
  13. }
  14.  
  15. $baz = (new Foo)->bar()()[0];
  16. var_dump($baz);
Add Comment
Please, Sign In to add comment