Guest User

Untitled

a guest
Jan 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. function bind($controller, $action) {
  4. /*
  5. * returns a closure that loads the controller in
  6. * question and executes the action.
  7. */
  8. return function($params) use ($controller, $action) {
  9. include $controller . '.php';
  10. return call_user_func_array($controller . '::' . $action, $params);
  11. }
  12. }
  13.  
  14. ?>
Add Comment
Please, Sign In to add comment