s=sf-dump-str title="3 characters">GET"
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Middleware
/TransformsRequest.php
*
* @var array
*/
protected $attributes = [];
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param array ...$attributes
* @return mixed
*/
public function handle($request, Closure $next, ...$attributes)
{
$this->attributes = $attributes;
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} else {
$this->cleanParameterBag($request->request);
}
}
/**
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Pipeline
/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->container->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
Closure {#649
class : "Illuminate\Routing \ Pipeline "
this : Pipeline {#30 …}
parameters : {
$passable : {}
}
use : {
$stack : Closure {#650 …}
$pipe : "Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull "
}
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Routing
/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Middleware
/ValidatePostSize.php
class ValidatePostSize
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Http\Exceptions\PostTooLargeException
*/
public function handle($request, Closure $next)
{
$max = $this->getPostMaxSize();
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
* @return int
*/
protected function getPostMaxSize()
{
if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
return (int) $postMaxSize;
}
$metric = strtoupper(substr($postMaxSize, -1));
$postMaxSize = (int) $postMaxSize;
switch ($metric) {
case 'K':
return $postMaxSize * 1024;
case 'M':
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Pipeline
/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->container->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
Closure {#648
class : "Illuminate\Routing \ Pipeline "
this : Pipeline {#30 …}
parameters : {
$passable : {}
}
use : {
$stack : Closure {#649 …}
$pipe : "App\Http\Middleware\TrimStrings "
}
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Routing
/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Middleware
/CheckForMaintenanceMode.php
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
if (isset($data['allowed']) && IpUtils::checkIp($request->ip(), (array) $data['allowed'])) {
return $next($request);
}
if ($this->inExceptArray($request)) {
return $next($request);
}
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
/**
* Determine if the request has a URI that should be accessible in maintenance mode.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function inExceptArray($request)
{
foreach ($this->except as $except) {
if ($except !== '/') {
$except = trim($except, '/');
}
if ($request->fullUrlIs($except) || $request->is($except)) {
return true;
}
}
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Pipeline
/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->container->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
Closure {#640
class : "Illuminate\Routing \ Pipeline "
this : Pipeline {#30 …}
parameters : {
$passable : {}
}
use : {
$stack : Closure {#648 …}
$pipe : "Illuminate\Foundation\Http\Middleware\ValidatePostSize "
}
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Routing
/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Pipeline
/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
return $destination($passable);
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Kernel.php
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
Arguments
Closure {#22
class : "Illuminate\Foundation\Http \ Kernel "
this : Kernel {#29 …}
parameters : {
$request : {}
}
}
/home
/website
/sh.guizhifeng.com
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Kernel.php
$router->middlewareGroup($key, $middleware);
}
foreach ($this->routeMiddleware as $key => $middleware) {
$router->aliasMiddleware($key, $middleware);
}
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new Events\RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
/home
/website
/sh.guizhifeng.com
/public
/index.php
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Arguments
Request {#42
#json : null
#convertedFiles : null
#userResolver : Closure {#542
class : "Illuminate\Auth \ AuthServiceProvider "
this : AuthServiceProvider {#41 …}
parameters : {
$guard : {
default : null
}
}
use : {
$app : Application {#2 …}
}
}
#routeResolver : Closure {#535
class : "Illuminate\Routing \ Router "
this : Router {#25 …}
use : {
$route : Route {#807 …}
}
}
+attributes : ParameterBag {#44 }
+request : ParameterBag {#50 }
+query : ParameterBag {#50 }
+server : ServerBag {#46 }
+files : FileBag {#47 }
+cookies : ParameterBag {#45 }
+headers : HeaderBag {#48 }
#content : null
#languages : null
#charsets : null
#encodings : null
#acceptableContentTypes : array:1 [
0 => "*/* "
]
#pathInfo : "/article/061S26442018.html "
#requestUri : "/article/061S26442018.html "
#baseUrl : ""
#basePath : null
#method : "GET "
#format : null
#session : Store {#408 }
#locale : null
#defaultLocale : "en "
-isHostValid : true
-isForwardedValid : true
basePath : ""
format : "html "
}
Environment & details:
GET Data
empty
POST Data
empty
Files
empty
Cookies
empty
Session
empty
Server/Request Data
Key
Value
USER
"www "
HOME
"/home/www "
HTTP_ACCEPT
"*/* "
HTTP_HOST
"www.shhggroup.com "
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko "
PATH_INFO
""
REDIRECT_STATUS
"200 "
SERVER_NAME
"sh.guizhifeng.com "
SERVER_PORT
"80 "
SERVER_ADDR
"117.34.91.211 "
REMOTE_PORT
"52986 "
REMOTE_ADDR
"23.19.66.65 "
SERVER_SOFTWARE
"nginx/1.18.0 "
GATEWAY_INTERFACE
"CGI/1.1 "
REQUEST_SCHEME
"http "
SERVER_PROTOCOL
"HTTP/1.1 "
DOCUMENT_ROOT
"/home/website/sh.guizhifeng.com/public "
DOCUMENT_URI
"/index.php "
REQUEST_URI
"/article/061S26442018.html "
SCRIPT_NAME
"/index.php "
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET "
QUERY_STRING
""
SCRIPT_FILENAME
"/home/website/sh.guizhifeng.com/public/index.php "
FCGI_ROLE
"RESPONDER "
PHP_SELF
"/index.php "
REQUEST_TIME_FLOAT
1656573049.0637
REQUEST_TIME
1656573049
?APP_NAME
"alps "
APP_ENV
"local "
APP_KEY
"base64:Sbpm1OA76WbR3g0+ZLwdXwJO7zQxnz+A1Te5hFrWjYw= "
APP_DEBUG
"true "
APP_URL
"http://peopletester.com/ "
LOG_CHANNEL
"stack "
DB_CONNECTION
"mysql "
DB_HOST
"127.0.0.1 "
DB_PORT
"3306 "
DB_DATABASE
"sh_guizhifeng_c "
DB_USERNAME
"sh_guizhifeng_c "
DB_PASSWORD
"afn5rRnCiKyGCnYs "
BROADCAST_DRIVER
"log "
CACHE_DRIVER
"file "
SESSION_DRIVER
"file "
SESSION_LIFETIME
"120 "
QUEUE_DRIVER
"sync "
REDIS_HOST
"127.0.0.1 "
REDIS_PASSWORD
"null "
REDIS_PORT
"6379 "
MAIL_DRIVER
"smtp "
MAIL_HOST
"smtp.qq.com "
MAIL_PORT
"465 "
MAIL_USERNAME
"4396988@qq.com "
MAIL_PASSWORD
"pjhoqbocmtoucadc "
MAIL_ENCRYPTION
"ssl "
MAIL_FROM_ADDRESS
"4396988@qq.com "
MAIL_FROM_NAME
"郭楠 "
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1 "
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1 "
Environment Variables
Key
Value
?APP_NAME
"alps "
APP_ENV
"local "
APP_KEY
"base64:Sbpm1OA76WbR3g0+ZLwdXwJO7zQxnz+A1Te5hFrWjYw= "
APP_DEBUG
"true "
APP_URL
"http://peopletester.com/ "
LOG_CHANNEL
"stack "
DB_CONNECTION
"mysql "
DB_HOST
"127.0.0.1 "
DB_PORT
"3306 "
DB_DATABASE
"sh_guizhifeng_c "
DB_USERNAME
"sh_guizhifeng_c "
DB_PASSWORD
"afn5rRnCiKyGCnYs "
BROADCAST_DRIVER
"log "
CACHE_DRIVER
"file "
SESSION_DRIVER
"file "
SESSION_LIFETIME
"120 "
QUEUE_DRIVER
"sync "
REDIS_HOST
"127.0.0.1 "
REDIS_PASSWORD
"null "
REDIS_PORT
"6379 "
MAIL_DRIVER
"smtp "
MAIL_HOST
"smtp.qq.com "
MAIL_PORT
"465 "
MAIL_USERNAME
"4396988@qq.com "
MAIL_PASSWORD
"pjhoqbocmtoucadc "
MAIL_ENCRYPTION
"ssl "
MAIL_FROM_ADDRESS
"4396988@qq.com "
MAIL_FROM_NAME
"郭楠 "
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1 "
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1 "
Registered Handlers
0. Whoops\Handler\PrettyPageHandler