Skip to content

Instantly share code, notes, and snippets.

@evert
Created October 8, 2011 00:21
Show Gist options
  • Save evert/1271672 to your computer and use it in GitHub Desktop.
Save evert/1271672 to your computer and use it in GitHub Desktop.
My router idea
<?php
$router = new \My\Router();
$router->add('GET /blog/(?P<postId>[\d]+)', function($postId) {
return new \My\Blog\Controller($postId);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment