phprouter | fast HTTP URL router for PHP projects | Router library
kandi X-RAY | phprouter Summary
kandi X-RAY | phprouter Summary
PhpRouter is a powerful, lightweight, and very fast HTTP URL router for PHP projects.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Call a class .
- Publish response .
- Make a route .
- Saves a new route .
- Stack a callable stack .
- Finds a route matching the given patterns .
- Dispatch the request
- Create a regex parameter .
- Convert to array .
- Find routes by method .
phprouter Key Features
phprouter Examples and Code Snippets
Community Discussions
Trending Discussions on phprouter
QUESTION
I'm developing an MVC web app, and for its router to function I need to parse the query string, for which I need to load the URL into a variable in the first place. How do I achieve this with the PHP's built-in server?
I use PHP 7.3.9 at the moment, but as far as I can tell, the issue is persistent across all versions of a built-in server.
If I use Apache to run this app, everything is simple, all I need to do is
$uri = $_SERVER['QUERY_STRING'];
and I'm good to go, everything works just fine.
However, if I use PHP's built-in web server, I get an error saying:
Undefined index: QUERY_STRING in /path_to_my_project/public/index.php on line 22
I tried googling around and found this pull request suggesting that such a variable truly doesn't exist in the PHP's built-in web server.
So my question is: how do I obtain the query string for my router if I run the built-in server, where $_SERVER['QUERY_STRING']
doesn't exist?
ANSWER
Answered 2019-Sep-21 at 11:59You can get the same result by using REQUEST_URI
, if this is available:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install phprouter
It's so easy to work with PhpRouter! Just take a look at the following example.
JSON API Example: use MiladRahimi\PhpRouter\Router; use Laminas\Diactoros\Response\JsonResponse; $router = Router::create(); $router->get('/', function () { return new JsonResponse(['message' => 'ok']); }); $router->dispatch();
View Example: use MiladRahimi\PhpRouter\Router; use MiladRahimi\PhpRouter\View\View $router = Router::create(); $router->setupView('/../views'); $router->get('/', function (View $view) { return $view->make('profile', ['user' => 'Jack']); }); $router->dispatch();
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page