王大坤 577e175234 更新google 1 rok temu
..
Annotation 4122133d42 update 1 rok temu
DependencyInjection 4122133d42 update 1 rok temu
Exception 4122133d42 update 1 rok temu
Generator 577e175234 更新google 1 rok temu
Loader 577e175234 更新google 1 rok temu
Matcher 577e175234 更新google 1 rok temu
Alias.php 4122133d42 update 1 rok temu
CHANGELOG.md 4122133d42 update 1 rok temu
CompiledRoute.php 4122133d42 update 1 rok temu
LICENSE 577e175234 更新google 1 rok temu
README.md 4122133d42 update 1 rok temu
RequestContext.php 4122133d42 update 1 rok temu
RequestContextAwareInterface.php 4122133d42 update 1 rok temu
Route.php 4122133d42 update 1 rok temu
RouteCollection.php 577e175234 更新google 1 rok temu
RouteCollectionBuilder.php 4122133d42 update 1 rok temu
RouteCompiler.php 4122133d42 update 1 rok temu
RouteCompilerInterface.php 4122133d42 update 1 rok temu
Router.php 577e175234 更新google 1 rok temu
RouterInterface.php 4122133d42 update 1 rok temu
composer.json 577e175234 更新google 1 rok temu

README.md

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