$others = $this->checkForAlternateVerbs($request);
if (count($others) > 0)
{
return $this->getOtherMethodsRoute($request, $others);
}
throw new NotFoundHttpException;
}
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
return $this->substituteBindings($route);
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function dispatchToRoute(Request $request)
{
$route = $this->findRoute($request);
$this->events->fire('router.matched', array($route, $request));
// If no response was returned from the before filter, we will call the proper
// route instance to get the response. If no route is found a response will
// still get returned based on why no routes were found for this request.
$response = $this->callFilter('before', $request);
if (is_null($response))
{
$response = $this->dispatchToRoute($request);
}
}
if ($this->runningUnitTests() && ! $this['session']->isStarted())
{
$this['session']->start();
}
return $this['router']->dispatch($this->prepareRequest($request));
}
{
try
{
$this->refreshRequest($request = Request::createFromBase($request));
$this->boot();
return $this->dispatch($request);
}
catch (\Exception $e)
if ($this->sessionConfigured())
{
$session = $this->startSession($request);
$request->setSession($session);
}
$response = $this->app->handle($request, $type, $catch);
// Again, if the session has been configured we will need to close out the session
* @param \Symfony\Component\HttpFoundation\Request $request
* @param int $type
* @param bool $catch
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$response = $this->app->handle($request, $type, $catch);
foreach ($this->cookies->getQueuedCookies() as $cookie)
* @param \Symfony\Component\HttpFoundation\Request $request
* @param int $type
* @param bool $catch
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
}
{
$this->app = $app;
$this->middlewares = $middlewares;
}
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
return $this->app->handle($request, $type, $catch);
}
* @param \Symfony\Component\HttpFoundation\Request $request
* @return void
*/
public function run(SymfonyRequest $request = null)
{
$request = $request ?: $this['request'];
$response = with($stack = $this->getStackedClient())->handle($request);
$response->send();
| Once we have the application, we can simply call the run method, | which will execute the request and send the response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have whipped up for them. | */ $app->run();
| Key | Value |
| PHP_EXTRA_CONFIGURE_ARGS | --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --disable-cgi |
| HOSTNAME | 0907701cc2ae |
| PHP_INI_DIR | /usr/local/etc/php |
| SHLVL | 1 |
| HOME | / |
| PHP_LDFLAGS | -Wl,-O1 -Wl,--hash-style=both -pie |
| PHP_CFLAGS | -fstack-protector-strong -fpic -fpie -O2 |
| PHP_MD5 | |
| PHP_VERSION | 5.6.40 |
| GPG_KEYS | 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 |
| PHP_CPPFLAGS | -fstack-protector-strong -fpic -fpie -O2 |
| PHP_ASC_URL | https://secure.php.net/get/php-5.6.40.tar.xz.asc/from/this/mirror |
| PHP_URL | https://secure.php.net/get/php-5.6.40.tar.xz/from/this/mirror |
| PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| PHPIZE_DEPS | autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| PWD | /app |
| PHP_SHA256 | 1369a51eee3995d7fbd1c5342e5cc917760e276d561595b6052b21ace2656d1c |
| FCGI_ROLE | RESPONDER |
| QUERY_STRING | |
| REQUEST_METHOD | GET |
| CONTENT_TYPE | |
| CONTENT_LENGTH | |
| SCRIPT_NAME | /index.php |
| REQUEST_URI | /uploads/images/2019/881/aab0c627c8a9be933245389e34a042c3.jpg |
| DOCUMENT_URI | /index.php |
| DOCUMENT_ROOT | /app/public |
| SERVER_PROTOCOL | HTTP/1.1 |
| REQUEST_SCHEME | http |
| GATEWAY_INTERFACE | CGI/1.1 |
| SERVER_SOFTWARE | nginx/1.27.2 |
| REMOTE_ADDR | 216.73.216.105 |
| REMOTE_PORT | 44126 |
| SERVER_ADDR | 10.0.1.4 |
| SERVER_PORT | 80 |
| SERVER_NAME | |
| REDIRECT_STATUS | 200 |
| SCRIPT_FILENAME | /app/public/index.php |
| PATH_INFO | |
| HTTP_HOST | appdigg.ru |
| HTTP_USER_AGENT | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| HTTP_ACCEPT | */* |
| HTTP_ACCEPT_ENCODING | gzip, br, zstd, deflate |
| HTTP_X_FORWARDED_FOR | 216.73.216.105 |
| HTTP_X_FORWARDED_HOST | appdigg.ru |
| HTTP_X_FORWARDED_PORT | 443 |
| HTTP_X_FORWARDED_PROTO | https |
| HTTP_X_FORWARDED_SERVER | 7a9f5824fb8e |
| HTTP_X_REAL_IP | 216.73.216.105 |
| PHP_SELF | /index.php |
| REQUEST_TIME_FLOAT | 1761534806.1191 |
| REQUEST_TIME | 1761534806 |
| argv | Array ( ) |
| argc | 0 |
| Key | Value |
| PHP_EXTRA_CONFIGURE_ARGS | --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --disable-cgi |
| HOSTNAME | 0907701cc2ae |
| PHP_INI_DIR | /usr/local/etc/php |
| SHLVL | 1 |
| HOME | / |
| PHP_LDFLAGS | -Wl,-O1 -Wl,--hash-style=both -pie |
| PHP_CFLAGS | -fstack-protector-strong -fpic -fpie -O2 |
| PHP_MD5 | |
| PHP_VERSION | 5.6.40 |
| GPG_KEYS | 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 |
| PHP_CPPFLAGS | -fstack-protector-strong -fpic -fpie -O2 |
| PHP_ASC_URL | https://secure.php.net/get/php-5.6.40.tar.xz.asc/from/this/mirror |
| PHP_URL | https://secure.php.net/get/php-5.6.40.tar.xz/from/this/mirror |
| PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| PHPIZE_DEPS | autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| PWD | /app |
| PHP_SHA256 | 1369a51eee3995d7fbd1c5342e5cc917760e276d561595b6052b21ace2656d1c |
| FCGI_ROLE | RESPONDER |
| QUERY_STRING | |
| REQUEST_METHOD | GET |
| CONTENT_TYPE | |
| CONTENT_LENGTH | |
| SCRIPT_NAME | /index.php |
| REQUEST_URI | /uploads/images/2019/881/aab0c627c8a9be933245389e34a042c3.jpg |
| DOCUMENT_URI | /index.php |
| DOCUMENT_ROOT | /app/public |
| SERVER_PROTOCOL | HTTP/1.1 |
| REQUEST_SCHEME | http |
| GATEWAY_INTERFACE | CGI/1.1 |
| SERVER_SOFTWARE | nginx/1.27.2 |
| REMOTE_ADDR | 216.73.216.105 |
| REMOTE_PORT | 44126 |
| SERVER_ADDR | 10.0.1.4 |
| SERVER_PORT | 80 |
| SERVER_NAME | |
| REDIRECT_STATUS | 200 |
| SCRIPT_FILENAME | /app/public/index.php |
| PATH_INFO | |
| HTTP_HOST | appdigg.ru |
| HTTP_USER_AGENT | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| HTTP_ACCEPT | */* |
| HTTP_ACCEPT_ENCODING | gzip, br, zstd, deflate |
| HTTP_X_FORWARDED_FOR | 216.73.216.105 |
| HTTP_X_FORWARDED_HOST | appdigg.ru |
| HTTP_X_FORWARDED_PORT | 443 |
| HTTP_X_FORWARDED_PROTO | https |
| HTTP_X_FORWARDED_SERVER | 7a9f5824fb8e |
| HTTP_X_REAL_IP | 216.73.216.105 |
| PHP_SELF | /index.php |
| REQUEST_TIME_FLOAT | 1761534806.1191 |
| REQUEST_TIME | 1761534806 |
| argv | Array ( ) |
| argc | 0 |