从观澜湖翡翠湾二小到翡翠市场怎么坐公交车,最快需要多久

…/&vendor/&predis/&predis/&lib/&Predis/&Client.php231
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&RedisStore.php69
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&RedisStore.php69
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php212
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php88
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php88
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Manager.php127
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1049
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1049
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1002
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Eloquent/&Builder.php441
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Eloquent/&Builder.php132
…/&app/&storage/&views/&59e6b2dbda5dc03beb3564
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&PhpEngine.php38
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&CompilerEngine.php45
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php100
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php81
…/&app/&storage/&views/&bd7c619c04cbc69513ff134
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&PhpEngine.php38
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&CompilerEngine.php45
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php100
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php81
…/&vendor/&laravel/&framework/&src/&Illuminate/&Http/&Response.php70
…/&vendor/&symfony/&http-foundation/&Symfony/&Component/&HttpFoundation/&Response.php141
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Facades/&Response.php29
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Facades/&Response.php45
…/&app/&controllers/&City/&TransferController.php72
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Controllers/&Controller.php138
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Controllers/&Controller.php115
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Router.php985
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Route.php80
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Route.php47
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Router.php1016
…/&vendor/&laravel/&framework/&src/&Illuminate/&Foundation/&Application.php574
…/&vendor/&laravel/&framework/&src/&Illuminate/&Foundation/&Application.php550
…/&public/&index.php54
ServerException
OOM command not allowed when used memory & 'maxmemory'.
$response = $command-&parseResponse($response);
if ($this-&options-&exceptions) {
throw new ServerException($response-&getMessage());
public function __call($method, $arguments)
$command = $this-&profile-&createCommand($method, $arguments);
$response = $this-&connection-&executeCommand($command);
if ($response instanceof ResponseObjectInterface) {
if ($response instanceof ResponseErrorInterface) {
$response = $this-&onResponseError($command, $response);
* @return void
public function put($key, $value, $minutes)
$value = is_numeric($value) ? $value : serialize($value);
$this-&connection()-&set($this-&prefix.$key, $value);
$this-&connection()-&expire($this-&prefix.$key, $minutes * 60);
* @return void
public function put($key, $value, $minutes)
$value = is_numeric($value) ? $value : serialize($value);
$this-&connection()-&set($this-&prefix.$key, $value);
$this-&connection()-&expire($this-&prefix.$key, $minutes * 60);
&#unknown&
$parameters
* @return mixed
public function __call($method, $parameters)
return call_user_func_array(array($this-&store, $method), $parameters);
// otherwise we will execute the given Closure and cache the result
// of that execution for the given number of minutes in storage.
if ( ! is_null($value = $this-&get($key)))
$this-&put($key, $value = $callback(), $minutes);
// otherwise we will execute the given Closure and cache the result
// of that execution for the given number of minutes in storage.
if ( ! is_null($value = $this-&get($key)))
$this-&put($key, $value = $callback(), $minutes);
&#unknown&
$parameters
* @return mixed
public function __call($method, $parameters)
return call_user_func_array(array($this-&driver(), $method), $parameters);
// If the query is requested ot be cached, we will cache it using a unique key
// for this database connection and query statement, including the bindings
// that are used on this query, providing great convenience when caching.
$cache = $this-&connection-&getCacheManager();
$callback = $this-&getCacheCallback($columns);
return $cache-&remember($key, $minutes, $callback);
// If the query is requested ot be cached, we will cache it using a unique key
// for this database connection and query statement, including the bindings
// that are used on this query, providing great convenience when caching.
$cache = $this-&connection-&getCacheManager();
$callback = $this-&getCacheCallback($columns);
return $cache-&remember($key, $minutes, $callback);
* Execute the query as a &select& statement.
* @return array|static[]
public function get($columns = array('*'))
if ( ! is_null($this-&cacheMinutes)) return $this-&getCached($columns);
return $this-&getFresh($columns);
* @return array|static[]
public function getModels($columns = array('*'))
// First, we will simply get the raw results from the query builders which we
// can use to populate an array with Eloquent models. We will pass columns
// that should be selected as well, which are typically just everything.
$results = $this-&query-&get($columns);
$connection = $this-&model-&getConnectionName();
* Execute the query as a &select& statement.
* @return \Illuminate\Database\Eloquent\Collection|static[]
public function get($columns = array('*'))
$models = $this-&getModels($columns);
// If we actually found models we will also eager load any relationships that
&div class=&gj01_side_hot&&
&h4&&?php echo e($_USER_CITY-&name); ?&最新行程线路&/h4&
&a href=&&?php echo URL::route('city_transfer_list', [$_USER_CITY-&letter]); ?&& class=&more&&更多&/a&
&?php foreach( Transfer::onCity( $_USER_CITY-&id)-&remember(60)-&orderBy('id', 'desc')-&take(10)-&get() as $row ): ?&
&li&&a href=&&?php echo $row-&url(); ?&&&&?php echo e($row-&title); ?&&/a&&/li&
extract($__data);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
include $__
catch (\Exception $e)
if ($this-&compiler-&isExpired($path))
$this-&compiler-&compile($path);
$compiled = $this-&compiler-&getCompiledPath($path);
return $this-&evaluatePath($compiled, $data);
* Get the evaluated contents of the view.
* @return string
protected function getContents()
return $this-&engine-&get($this-&path, $this-&gatherData());
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$env-&incrementRender();
$env-&callComposer($this);
$contents = $this-&getContents();
// Once we've finished rendering the view, we'll decrement the render count
&?php echo $__env-&make('_elements.inner_relations', array_except(get_defined_vars(), array('__data', '__path')))-&render(); ?&
&?php echo $__env-&make('_elements.gongjiao.sidebar', array_except(get_defined_vars(), array('__data', '__path')))-&render(); ?&
extract($__data);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
include $__
catch (\Exception $e)
if ($this-&compiler-&isExpired($path))
$this-&compiler-&compile($path);
$compiled = $this-&compiler-&getCompiledPath($path);
return $this-&evaluatePath($compiled, $data);
* Get the evaluated contents of the view.
* @return string
protected function getContents()
return $this-&engine-&get($this-&path, $this-&gatherData());
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$env-&incrementRender();
$env-&callComposer($this);
$contents = $this-&getContents();
// Once we've finished rendering the view, we'll decrement the render count
// If this content implements the &RenderableInterface&, then we will call the
// render method on the object so we will avoid any &__toString& exceptions
// that might be thrown and have their errors obscured by PHP's handling.
elseif ($content instanceof RenderableInterface)
$content = $content-&render();
* @throws \InvalidArgumentException When the HTTP status code is not valid
public function __construct($content = '', $status = 200, $headers = array())
$this-&headers = new ResponseHeaderBag($headers);
$this-&setContent($content);
$this-&setStatusCode($status);
$this-&setProtocolVersion('1.0');
* @return \Illuminate\Http\Response
public static function make($content = '', $status = 200, array $headers = array())
return new IlluminateResponse($content, $status, $headers);
* @return \Illuminate\Http\Response
public static function view($view, $data = array(), $status = 200, array $headers = array())
$app = Facade::getFacadeApplication();
return static::make($app['view']-&make($view, $data), $status, $headers);
$this-&data['TITLE'] = $
Config::set(&session.driver&, 'array');
$this-&data['TRANSFER'] = $
$this-&data['PLANS'] = $
$this-&data['DESCS'] = $
$this-&data['LINES'] = $
return Response::view('city.transfer.show', $this-&data)
-&setCache([ 'public' =& 1, 'max_age' =& 3600*8 ]);
&#unknown&
$parameters
* @return mixed
protected function callMethod($method, $parameters)
return call_user_func_array(array($this, $method), $parameters);
// after filters on the controller to wrap up any last minute processing.
$response = $this-&callBeforeFilters($router, $method);
$this-&setupLayout();
if (is_null($response))
$response = $this-&callMethod($method, $parameters);
// We will extract the passed in parameters off of the route object so we will
// pass them off to the controller method as arguments. We will not get the
// defaults so that the controllers will be able to use its own defaults.
$args = array_values($route-&getParametersWithoutDefaults());
$instance = $ioc-&make($controller);
return $instance-&callAction($ioc, $me, $method, $args);
&#unknown&
* @return mixed
protected function callCallable()
$variables = array_values($this-&getParametersWithoutDefaults());
return call_user_func_array($this-&getOption('_call'), $variables);
// We will only call the router callable if no &before& middlewares returned
// a response. If they do, we will consider that the response to requests
// so that the request &lifecycle& will be easily halted for filtering.
$response = $this-&callBeforeFilters($request);
if ( ! isset($response))
$response = $this-&callCallable();
// Once we have the route, we can just run it to get the responses, which will
// always be instances of the Response class. Once we have the responses we
// will execute the global &after& middlewares to finish off the request.
$this-&currentRoute = $route = $this-&findRoute($request);
$response = $route-&run($request);
if ($this-&isDownForMaintenance())
$response = $this['events']-&until('illuminate.app.down');
if ( ! is_null($response)) return $this-&prepareResponse($response, $request);
return $this['router']-&dispatch($this-&prepareRequest($request));
* Handles the given request and delivers the response.
* @return void
public function run()
$response = $this-&dispatch($this['request']);
$this['router']-&callCloseFilter($this['request'], $response);
| 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 applications we have created for them.
$app-&run();
Server/Request Data
GATEWAY_INTERFACE
SERVER_SOFTWARE
nginx/1.8.1
QUERY_STRING
REQUEST_METHOD
CONTENT_TYPE
CONTENT_LENGTH
SCRIPT_FILENAME
/data/www/gongjiao/public/index.php
SCRIPT_NAME
/index.php
REQUEST_URI
/index.php/ride/1397681.html
DOCUMENT_URI
/index.php
DOCUMENT_ROOT
/data/www/gongjiao/public
SERVER_PROTOCOL
REMOTE_ADDR
117.85.24.41
REMOTE_PORT
SERVER_ADDR
10.141.85.201
SERVER_PORT
SERVER_NAME
REDIRECT_STATUS
HTTP_USER_AGENT
Mozilla/4.0 ( MSIE 8.0; Windows NT 6.0; Trident/4.0)
HTTP_ACCEPT
HTTP_REFERER
/index.php/ride/1397681.html
/index.php
REQUEST_TIME_FLOAT
REQUEST_TIME
Environment Variables
Registered Handlers
0. Whoops\Handler\PrettyPageHandler…/&vendor/&predis/&predis/&lib/&Predis/&Client.php231
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&RedisStore.php69
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&RedisStore.php69
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php212
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php88
…/&vendor/&laravel/&framework/&src/&Illuminate/&Cache/&Repository.php88
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Manager.php127
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1049
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1049
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Query/&Builder.php1002
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Eloquent/&Builder.php441
…/&vendor/&laravel/&framework/&src/&Illuminate/&Database/&Eloquent/&Builder.php132
…/&app/&storage/&views/&59e6b2dbda5dc03beb3564
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&PhpEngine.php38
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&CompilerEngine.php45
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php100
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php81
…/&app/&storage/&views/&bd7c619c04cbc69513ff134
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&PhpEngine.php38
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&Engines/&CompilerEngine.php45
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php100
…/&vendor/&laravel/&framework/&src/&Illuminate/&View/&View.php81
…/&vendor/&laravel/&framework/&src/&Illuminate/&Http/&Response.php70
…/&vendor/&symfony/&http-foundation/&Symfony/&Component/&HttpFoundation/&Response.php141
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Facades/&Response.php29
…/&vendor/&laravel/&framework/&src/&Illuminate/&Support/&Facades/&Response.php45
…/&app/&controllers/&City/&TransferController.php72
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Controllers/&Controller.php138
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Controllers/&Controller.php115
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Router.php985
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Route.php80
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Route.php47
…/&vendor/&laravel/&framework/&src/&Illuminate/&Routing/&Router.php1016
…/&vendor/&laravel/&framework/&src/&Illuminate/&Foundation/&Application.php574
…/&vendor/&laravel/&framework/&src/&Illuminate/&Foundation/&Application.php550
…/&public/&index.php54
ServerException
OOM command not allowed when used memory & 'maxmemory'.
$response = $command-&parseResponse($response);
if ($this-&options-&exceptions) {
throw new ServerException($response-&getMessage());
public function __call($method, $arguments)
$command = $this-&profile-&createCommand($method, $arguments);
$response = $this-&connection-&executeCommand($command);
if ($response instanceof ResponseObjectInterface) {
if ($response instanceof ResponseErrorInterface) {
$response = $this-&onResponseError($command, $response);
* @return void
public function put($key, $value, $minutes)
$value = is_numeric($value) ? $value : serialize($value);
$this-&connection()-&set($this-&prefix.$key, $value);
$this-&connection()-&expire($this-&prefix.$key, $minutes * 60);
* @return void
public function put($key, $value, $minutes)
$value = is_numeric($value) ? $value : serialize($value);
$this-&connection()-&set($this-&prefix.$key, $value);
$this-&connection()-&expire($this-&prefix.$key, $minutes * 60);
&#unknown&
$parameters
* @return mixed
public function __call($method, $parameters)
return call_user_func_array(array($this-&store, $method), $parameters);
// otherwise we will execute the given Closure and cache the result
// of that execution for the given number of minutes in storage.
if ( ! is_null($value = $this-&get($key)))
$this-&put($key, $value = $callback(), $minutes);
// otherwise we will execute the given Closure and cache the result
// of that execution for the given number of minutes in storage.
if ( ! is_null($value = $this-&get($key)))
$this-&put($key, $value = $callback(), $minutes);
&#unknown&
$parameters
* @return mixed
public function __call($method, $parameters)
return call_user_func_array(array($this-&driver(), $method), $parameters);
// If the query is requested ot be cached, we will cache it using a unique key
// for this database connection and query statement, including the bindings
// that are used on this query, providing great convenience when caching.
$cache = $this-&connection-&getCacheManager();
$callback = $this-&getCacheCallback($columns);
return $cache-&remember($key, $minutes, $callback);
// If the query is requested ot be cached, we will cache it using a unique key
// for this database connection and query statement, including the bindings
// that are used on this query, providing great convenience when caching.
$cache = $this-&connection-&getCacheManager();
$callback = $this-&getCacheCallback($columns);
return $cache-&remember($key, $minutes, $callback);
* Execute the query as a &select& statement.
* @return array|static[]
public function get($columns = array('*'))
if ( ! is_null($this-&cacheMinutes)) return $this-&getCached($columns);
return $this-&getFresh($columns);
* @return array|static[]
public function getModels($columns = array('*'))
// First, we will simply get the raw results from the query builders which we
// can use to populate an array with Eloquent models. We will pass columns
// that should be selected as well, which are typically just everything.
$results = $this-&query-&get($columns);
$connection = $this-&model-&getConnectionName();
* Execute the query as a &select& statement.
* @return \Illuminate\Database\Eloquent\Collection|static[]
public function get($columns = array('*'))
$models = $this-&getModels($columns);
// If we actually found models we will also eager load any relationships that
&div class=&gj01_side_hot&&
&h4&&?php echo e($_USER_CITY-&name); ?&最新行程线路&/h4&
&a href=&&?php echo URL::route('city_transfer_list', [$_USER_CITY-&letter]); ?&& class=&more&&更多&/a&
&?php foreach( Transfer::onCity( $_USER_CITY-&id)-&remember(60)-&orderBy('id', 'desc')-&take(10)-&get() as $row ): ?&
&li&&a href=&&?php echo $row-&url(); ?&&&&?php echo e($row-&title); ?&&/a&&/li&
extract($__data);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
include $__
catch (\Exception $e)
if ($this-&compiler-&isExpired($path))
$this-&compiler-&compile($path);
$compiled = $this-&compiler-&getCompiledPath($path);
return $this-&evaluatePath($compiled, $data);
* Get the evaluated contents of the view.
* @return string
protected function getContents()
return $this-&engine-&get($this-&path, $this-&gatherData());
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$env-&incrementRender();
$env-&callComposer($this);
$contents = $this-&getContents();
// Once we've finished rendering the view, we'll decrement the render count
&?php echo $__env-&make('_elements.inner_relations', array_except(get_defined_vars(), array('__data', '__path')))-&render(); ?&
&?php echo $__env-&make('_elements.gongjiao.sidebar', array_except(get_defined_vars(), array('__data', '__path')))-&render(); ?&
extract($__data);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
include $__
catch (\Exception $e)
if ($this-&compiler-&isExpired($path))
$this-&compiler-&compile($path);
$compiled = $this-&compiler-&getCompiledPath($path);
return $this-&evaluatePath($compiled, $data);
* Get the evaluated contents of the view.
* @return string
protected function getContents()
return $this-&engine-&get($this-&path, $this-&gatherData());
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$env-&incrementRender();
$env-&callComposer($this);
$contents = $this-&getContents();
// Once we've finished rendering the view, we'll decrement the render count
// If this content implements the &RenderableInterface&, then we will call the
// render method on the object so we will avoid any &__toString& exceptions
// that might be thrown and have their errors obscured by PHP's handling.
elseif ($content instanceof RenderableInterface)
$content = $content-&render();
* @throws \InvalidArgumentException When the HTTP status code is not valid
public function __construct($content = '', $status = 200, $headers = array())
$this-&headers = new ResponseHeaderBag($headers);
$this-&setContent($content);
$this-&setStatusCode($status);
$this-&setProtocolVersion('1.0');
* @return \Illuminate\Http\Response
public static function make($content = '', $status = 200, array $headers = array())
return new IlluminateResponse($content, $status, $headers);
* @return \Illuminate\Http\Response
public static function view($view, $data = array(), $status = 200, array $headers = array())
$app = Facade::getFacadeApplication();
return static::make($app['view']-&make($view, $data), $status, $headers);
$this-&data['TITLE'] = $
Config::set(&session.driver&, 'array');
$this-&data['TRANSFER'] = $
$this-&data['PLANS'] = $
$this-&data['DESCS'] = $
$this-&data['LINES'] = $
return Response::view('city.transfer.show', $this-&data)
-&setCache([ 'public' =& 1, 'max_age' =& 3600*8 ]);
&#unknown&
$parameters
* @return mixed
protected function callMethod($method, $parameters)
return call_user_func_array(array($this, $method), $parameters);
// after filters on the controller to wrap up any last minute processing.
$response = $this-&callBeforeFilters($router, $method);
$this-&setupLayout();
if (is_null($response))
$response = $this-&callMethod($method, $parameters);
// We will extract the passed in parameters off of the route object so we will
// pass them off to the controller method as arguments. We will not get the
// defaults so that the controllers will be able to use its own defaults.
$args = array_values($route-&getParametersWithoutDefaults());
$instance = $ioc-&make($controller);
return $instance-&callAction($ioc, $me, $method, $args);
&#unknown&
* @return mixed
protected function callCallable()
$variables = array_values($this-&getParametersWithoutDefaults());
return call_user_func_array($this-&getOption('_call'), $variables);
// We will only call the router callable if no &before& middlewares returned
// a response. If they do, we will consider that the response to requests
// so that the request &lifecycle& will be easily halted for filtering.
$response = $this-&callBeforeFilters($request);
if ( ! isset($response))
$response = $this-&callCallable();
// Once we have the route, we can just run it to get the responses, which will
// always be instances of the Response class. Once we have the responses we
// will execute the global &after& middlewares to finish off the request.
$this-&currentRoute = $route = $this-&findRoute($request);
$response = $route-&run($request);
if ($this-&isDownForMaintenance())
$response = $this['events']-&until('illuminate.app.down');
if ( ! is_null($response)) return $this-&prepareResponse($response, $request);
return $this['router']-&dispatch($this-&prepareRequest($request));
* Handles the given request and delivers the response.
* @return void
public function run()
$response = $this-&dispatch($this['request']);
$this['router']-&callCloseFilter($this['request'], $response);
| 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 applications we have created for them.
$app-&run();
Server/Request Data
GATEWAY_INTERFACE
SERVER_SOFTWARE
nginx/1.8.1
QUERY_STRING
REQUEST_METHOD
CONTENT_TYPE
CONTENT_LENGTH
SCRIPT_FILENAME
/data/www/gongjiao/public/index.php
SCRIPT_NAME
/index.php
REQUEST_URI
/index.php/ride/187527.html
DOCUMENT_URI
/index.php
DOCUMENT_ROOT
/data/www/gongjiao/public
SERVER_PROTOCOL
REMOTE_ADDR
117.85.24.41
REMOTE_PORT
SERVER_ADDR
10.141.85.201
SERVER_PORT
SERVER_NAME
REDIRECT_STATUS
HTTP_USER_AGENT
Mozilla/4.0 ( MSIE 8.0; Windows NT 6.0; Trident/4.0)
HTTP_ACCEPT
HTTP_REFERER
/index.php/ride/187527.html
/index.php
REQUEST_TIME_FLOAT
REQUEST_TIME
Environment Variables
Registered Handlers
0. Whoops\Handler\PrettyPageHandler}

我要回帖

更多关于 乐山翡翠国际观澜郡 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信