trs_matrimony/vendor/symfony/routing
2024-08-22 09:31:12 +05:30
..
Annotation project initial commit 2024-08-22 09:31:12 +05:30
DependencyInjection project initial commit 2024-08-22 09:31:12 +05:30
Exception project initial commit 2024-08-22 09:31:12 +05:30
Generator project initial commit 2024-08-22 09:31:12 +05:30
Loader project initial commit 2024-08-22 09:31:12 +05:30
Matcher project initial commit 2024-08-22 09:31:12 +05:30
Alias.php project initial commit 2024-08-22 09:31:12 +05:30
CHANGELOG.md project initial commit 2024-08-22 09:31:12 +05:30
CompiledRoute.php project initial commit 2024-08-22 09:31:12 +05:30
composer.json project initial commit 2024-08-22 09:31:12 +05:30
LICENSE project initial commit 2024-08-22 09:31:12 +05:30
README.md project initial commit 2024-08-22 09:31:12 +05:30
RequestContext.php project initial commit 2024-08-22 09:31:12 +05:30
RequestContextAwareInterface.php project initial commit 2024-08-22 09:31:12 +05:30
Route.php project initial commit 2024-08-22 09:31:12 +05:30
RouteCollection.php project initial commit 2024-08-22 09:31:12 +05:30
RouteCollectionBuilder.php project initial commit 2024-08-22 09:31:12 +05:30
RouteCompiler.php project initial commit 2024-08-22 09:31:12 +05:30
RouteCompilerInterface.php project initial commit 2024-08-22 09:31:12 +05:30
Router.php project initial commit 2024-08-22 09:31:12 +05:30
RouterInterface.php project initial commit 2024-08-22 09:31:12 +05:30

Routing Component

The Routing component maps an HTTP request to a set of configuration variables.

Getting Started

$ 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'

Resources