4 Routing associates a request with the code that will convert it to a response.
6 The example below demonstrates how you can set up a fully working routing
9 use Symfony\Component\HttpFoundation\Request;
10 use Symfony\Component\Routing\Matcher\UrlMatcher;
11 use Symfony\Component\Routing\RequestContext;
12 use Symfony\Component\Routing\RouteCollection;
13 use Symfony\Component\Routing\Route;
15 $routes = new RouteCollection();
16 $routes->add('hello', new Route('/hello', array('controller' => 'foo')));
18 $context = new RequestContext();
20 // this is optional and can be done without a Request instance
21 $context->fromRequest(Request::createFromGlobals());
23 $matcher = new UrlMatcher($routes, $context);
25 $parameters = $matcher->match('/hello');
30 You can run the unit tests with the following command:
32 $ cd path/to/Symfony/Component/Routing/
33 $ composer.phar install --dev