當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Store::getToken方法代碼示例

本文整理匯總了PHP中Illuminate\Session\Store::getToken方法的典型用法代碼示例。如果您正苦於以下問題:PHP Store::getToken方法的具體用法?PHP Store::getToken怎麽用?PHP Store::getToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Session\Store的用法示例。


在下文中一共展示了Store::getToken方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Class constructor
  *
  * @param \Illuminate\Html\HtmlBuilder      $html
  * @param \Illuminate\Routing\UrlGenerator  $url
  * @param \Illuminate\Session\Store         $session
  * @param \Illuminate\Config\Repository     $config
  */
 public function __construct(HtmlBuilder $html, UrlGenerator $url, Session $session, Config $config)
 {
     $this->url = $url;
     $this->html = $html;
     $this->csrfToken = $session->getToken();
     $this->config = $config;
     $this->loadConfig();
     $this->session = $session;
     $this->errors = $session->get('errors');
 }
開發者ID:jarnstedt,項目名稱:former,代碼行數:18,代碼來源:Former.php

示例2: __construct

 /**
  * The constructor
  *
  * @param HtmlBuilder  $html
  * @param UrlGenerator $url
  * @param Session      $session
  */
 public function __construct(HtmlBuilder $html, UrlGenerator $url, Session $session)
 {
     parent::__construct($html, $url, $session->getToken());
     $this->session = $session;
     $this->requiredFields = [];
     $this->errorFields = [];
     if ($this->session->has('formhelper-required-fields')) {
         $this->requiredFields = $this->session->get('formhelper-required-fields');
         $this->session->forget('formhelper-required-fields');
     }
     if ($this->session->has('formhelper-error-fields')) {
         $this->errorFields = $this->session->get('formhelper-error-fields');
         $this->session->forget('formhelper-error-fields');
     }
 }
開發者ID:artisaninweb,項目名稱:laravel-formvalidation-helper,代碼行數:22,代碼來源:FormBuilder.php

示例3: getToken

 /**
  * Get the CSRF token value.
  *
  * @return string 
  * @static 
  */
 public static function getToken()
 {
     return \Illuminate\Session\Store::getToken();
 }
開發者ID:satriashp,項目名稱:tour,代碼行數:10,代碼來源:_ide_helper.php

示例4: token

 /**
  * Generate a hidden field with the current CSRF token.
  *
  * @return string
  */
 public function token()
 {
     $token = !empty($this->csrfToken) ? $this->csrfToken : $this->session->getToken();
     return $this->hidden('_token', $token);
 }
開發者ID:GeorgeShazkho,項目名稱:micros-de-conce,代碼行數:10,代碼來源:FormBuilder.php


注:本文中的Illuminate\Session\Store::getToken方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。