本文整理汇总了PHP中Nette\Http\IResponse::deleteCookie方法的典型用法代码示例。如果您正苦于以下问题:PHP IResponse::deleteCookie方法的具体用法?PHP IResponse::deleteCookie怎么用?PHP IResponse::deleteCookie使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nette\Http\IResponse
的用法示例。
在下文中一共展示了IResponse::deleteCookie方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: destroy
/**
* Destroys all data registered to a session.
* @return void
*/
public function destroy()
{
if (!self::$started) {
throw new Nette\InvalidStateException('Session is not started.');
}
session_destroy();
$_SESSION = NULL;
self::$started = FALSE;
if (!$this->response->isSent()) {
$params = session_get_cookie_params();
$this->response->deleteCookie(session_name(), $params['path'], $params['domain'], $params['secure']);
}
}
示例2: destroySession
/**
* Destroy the current session
*/
public function destroySession()
{
$this->accessToken = NULL;
$this->signedRequest = NULL;
$this->user = NULL;
$this->session->clearAll();
// Javascript sets a cookie that will be used in getSignedRequest that we need to clear if we can
$cookieName = $this->config->getSignedRequestCookieName();
if (array_key_exists($cookieName, $this->httpRequest->getCookies())) {
$this->httpResponse->deleteCookie($cookieName, '/', $this->getBaseDomain());
unset($_COOKIE[$cookieName]);
}
}