server 52763dedf1 gitignore | 2 anni fa | |
---|---|---|
.. | ||
Annotation | 2 anni fa | |
DependencyInjection | 2 anni fa | |
Exception | 2 anni fa | |
Generator | 2 anni fa | |
Loader | 2 anni fa | |
Matcher | 2 anni fa | |
CHANGELOG.md | 2 anni fa | |
CompiledRoute.php | 2 anni fa | |
LICENSE | 2 anni fa | |
README.md | 2 anni fa | |
RequestContext.php | 2 anni fa | |
RequestContextAwareInterface.php | 2 anni fa | |
Route.php | 2 anni fa | |
RouteCollection.php | 2 anni fa | |
RouteCollectionBuilder.php | 2 anni fa | |
RouteCompiler.php | 2 anni fa | |
RouteCompilerInterface.php | 2 anni fa | |
Router.php | 2 anni fa | |
RouterInterface.php | 2 anni fa | |
composer.json | 2 anni fa |
The Routing component maps an HTTP request to a set of configuration variables.
$ composer require symfony/routing
use App\Controller\BlogController;
use Symfony\Component\Routing\Generator\UrlGenerator;
use Symfony\Component\Routing\Matcher\UrlMatcher;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;
$route = new Route('/blog/{slug}', ['_controller' => BlogController::class]);
$routes = new RouteCollection();
$routes->add('blog_show', $route);
$context = new RequestContext();
// Routing can match routes with incoming requests
$matcher = new UrlMatcher($routes, $context);
$parameters = $matcher->match('/blog/lorem-ipsum');
// $parameters = [
// '_controller' => 'App\Controller\BlogController',
// 'slug' => 'lorem-ipsum',
// '_route' => 'blog_show'
// ]
// Routing can also generate URLs for a given route
$generator = new UrlGenerator($routes, $context);
$url = $generator->generate('blog_show', [
'slug' => 'my-blog-post',
]);
// $url = '/blog/my-blog-post'