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

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