Guest User

Untitled

a guest
Apr 26th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?
  2. public static $routes = array(
  3. array(
  4. ':controller/:action', //the route
  5. array( //array of defaults for named parts of the route
  6. 'controller' => 'test',
  7. 'action' => '123'
  8. ),
  9. array( //array for expressions for named parts
  10. 'controller' => '[a-zA-Z0-9_\-]+',
  11. 'action' => '[a-zA-Z0-0_\-]+'
  12. ))
  13. );
  14. ?>
Add Comment
Please, Sign In to add comment