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


PHP CookieJar::forget方法代碼示例

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


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

示例1: forget

 /**
  * Expire the given cookie.
  *
  * @param string $name
  * @param string $path
  * @param string $domain
  * @return \Symfony\Component\HttpFoundation\Cookie 
  * @static 
  */
 public static function forget($name, $path = null, $domain = null)
 {
     return \Illuminate\Cookie\CookieJar::forget($name, $path, $domain);
 }
開發者ID:satriashp,項目名稱:tour,代碼行數:13,代碼來源:_ide_helper.php

示例2: forget

 /**
  * {@inheritDoc}
  */
 public function forget()
 {
     $cookie = $this->jar->forget($this->key);
     $this->jar->queue($cookie);
 }
開發者ID:kevin416,項目名稱:admin,代碼行數:8,代碼來源:IlluminateCookie.php

示例3: destroy

 /**
  * {@inheritDoc}
  */
 public function destroy($sessionId)
 {
     $this->cookie->queue($this->cookie->forget($sessionId));
 }
開發者ID:rodrigopbel,項目名稱:ong,代碼行數:7,代碼來源:CookieSessionHandler.php

示例4: forget

	/**
	 * Remove the Sentry cookie.
	 *
	 * @return void
	 */
	public function forget()
	{
		$this->cookie = $this->jar->forget($this->getKey());
	}
開發者ID:pcerbino,項目名稱:falcionevega,代碼行數:9,代碼來源:IlluminateCookie.php

示例5: delete

 /**
  * Delete a cookie
  *
  * @param string $cookieName
  *
  * @return bool
  */
 public function delete($cookieName)
 {
     $cookie = $this->cookie->forget($cookieName);
     $this->cookie->queue($cookie);
     return true;
 }
開發者ID:abstractpoint,項目名稱:cookie,代碼行數:13,代碼來源:LaravelCookie.php

示例6: forget

 /**
  * Expire the given cookie.
  *
  * @param string $name
  * @return \Symfony\Component\HttpFoundation\Cookie 
  * @static 
  */
 public static function forget($name)
 {
     return \Illuminate\Cookie\CookieJar::forget($name);
 }
開發者ID:jorzhikgit,項目名稱:MLM-Nexus,代碼行數:11,代碼來源:_ide_helper.php


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