You are here

public function CookieJar::allRawValues in Zircon Profile 8

Same name and namespace in other branches
  1. 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\BrowserKit

Code

public function allRawValues($uri) {
  return $this
    ->allValues($uri, true);
}