You are here

public function CookieJarInterface::clear in Lockr 7.3

Remove cookies currently held in the cookie jar.

Invoking this method without arguments will empty the whole cookie jar. If given a $domain argument only cookies belonging to that domain will be removed. If given a $domain and $path argument, cookies belonging to the specified path within that domain are removed. If given all three arguments, then the cookie with the specified name, path and domain is removed.

Parameters

string $domain Clears cookies matching a domain:

string $path Clears cookies matching a domain and path:

string $name Clears cookies matching a domain, path, and name:

Return value

CookieJarInterface

1 method overrides CookieJarInterface::clear()
CookieJar::clear in vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
Remove cookies currently held in the cookie jar.

File

vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php, line 67

Class

CookieJarInterface
Stores HTTP cookies.

Namespace

GuzzleHttp\Cookie

Code

public function clear($domain = null, $path = null, $name = null);