本文整理匯總了PHP中Illuminate\Routing\UrlGenerator::getRequest方法的典型用法代碼示例。如果您正苦於以下問題:PHP UrlGenerator::getRequest方法的具體用法?PHP UrlGenerator::getRequest怎麽用?PHP UrlGenerator::getRequest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Illuminate\Routing\UrlGenerator
的用法示例。
在下文中一共展示了UrlGenerator::getRequest方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: createRedirect
/**
* Create a new redirect response.
*
* @param string $path
* @param int $status
* @param array $headers
* @return \Illuminate\Http\RedirectResponse
*/
protected function createRedirect($path, $status, $headers)
{
$redirect = new RedirectResponse($path, $status, $headers);
if (isset($this->session)) {
$redirect->setSession($this->session);
}
$redirect->setRequest($this->generator->getRequest());
return $redirect;
}
示例2: getRequest
/**
* Get the request instance.
*
* @return \Illuminate\Http\Request
* @static
*/
public static function getRequest()
{
return \Illuminate\Routing\UrlGenerator::getRequest();
}
示例3: refresh
/**
* Create a new redirect response to the current URI.
*
* @param int $status
* @param array $headers
* @return \Illuminate\Http\RedirectResponse
*/
public function refresh($status = 302, $headers = array())
{
return $this->to($this->generator->getRequest()->path(), $status, $headers);
}
示例4: createRedirect
/**
* Create a new redirect response.
*
* @param string $path
* @param int $status
* @param array $headers
* @return \Illuminate\Http\RedirectResponse
*/
protected function createRedirect($path, $status, $headers)
{
$redirect = new base_http_response_redirect($path, $status, $headers);
$redirect->setRequest($this->generator->getRequest());
return $redirect;
}
示例5: action
/**
* Determine the appropriate action parameter to use for a form.
*
* If no action is specified, the current request URI will be used.
*
* @param string $action
* @param bool $https
* @return string
*/
protected function action($action, $https)
{
$uri = is_null($action) ? $this->url->getRequest()->path() : $action;
return $this->html->entities($this->url->to($uri, array(), $https));
}