Advertisement
Guest User

Untitled

a guest
Apr 8th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1.    $actions = array('c' => function () {
  2.         echo "Hello 3\n";
  3.         echo "Hello 4\n";
  4.       },
  5.       'b' => .... ,
  6.     );
  7.  
  8.     $actions['c'](); //Invocamos la funcion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement