Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
vendor /
symfony /
routing /
Delete
Unzip
Name
Size
Permission
Date
Action
Annotation
[ DIR ]
drwxr-xr-x
2022-04-21 14:23
DependencyInjection
[ DIR ]
drwxr-xr-x
2022-04-21 14:23
Exception
[ DIR ]
drwxr-xr-x
2022-04-21 14:23
Generator
[ DIR ]
drwxr-xr-x
2022-04-21 14:24
Loader
[ DIR ]
drwxr-xr-x
2022-04-21 14:24
Matcher
[ DIR ]
drwxr-xr-x
2022-04-21 14:24
Alias.php
2.52
KB
-rw-r--r--
2022-04-21 14:23
CHANGELOG.md
11.99
KB
-rw-r--r--
2022-04-21 14:23
CompiledRoute.php
4.22
KB
-rw-r--r--
2022-04-21 14:23
LICENSE
1.04
KB
-rw-r--r--
2022-04-21 14:23
README.md
1.49
KB
-rw-r--r--
2022-04-21 14:23
RequestContext.php
6.7
KB
-rw-r--r--
2022-04-21 14:23
RequestContextAwareInterface.php
546
B
-rw-r--r--
2022-04-21 14:23
Route.php
12.19
KB
-rw-r--r--
2022-04-21 14:23
RouteCollection.php
10.67
KB
-rw-r--r--
2022-04-21 14:23
RouteCollectionBuilder.php
9.45
KB
-rw-r--r--
2022-04-21 14:23
RouteCompiler.php
14.5
KB
-rw-r--r--
2022-04-21 14:23
RouteCompilerInterface.php
754
B
-rw-r--r--
2022-04-21 14:23
Router.php
12.26
KB
-rw-r--r--
2022-04-21 14:23
RouterInterface.php
1015
B
-rw-r--r--
2022-04-21 14:23
composer.json
1.61
KB
-rw-r--r--
2022-04-21 14:23
Save
Rename
Routing Component ================= The Routing component maps an HTTP request to a set of configuration variables. Getting Started --------------- ``` $ composer require symfony/routing ``` ```php 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 --------- * [Documentation](https://symfony.com/doc/current/routing.html) * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony)