public function CookieJar::allRawValues in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/browser-kit/CookieJar.php \Symfony\Component\BrowserKit\CookieJar::allRawValues()
Returns not yet expired raw cookie values for the given URI.
Parameters
string $uri A URI:
Return value
array An array of cookie values
File
- vendor/
symfony/ browser-kit/ CookieJar.php, line 235
Class
- CookieJar
- CookieJar.
Namespace
Symfony\Component\BrowserKitCode
public function allRawValues($uri) {
return $this
->allValues($uri, true);
}