本文整理匯總了PHP中Goutte\Client::setGuzzleCookieJar方法的典型用法代碼示例。如果您正苦於以下問題:PHP Client::setGuzzleCookieJar方法的具體用法?PHP Client::setGuzzleCookieJar怎麽用?PHP Client::setGuzzleCookieJar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Goutte\Client
的用法示例。
在下文中一共展示了Client::setGuzzleCookieJar方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testFileCookieJar
public function testFileCookieJar($testSaveSessionCookie = false)
{
$guzzle = $this->getGuzzle();
$client = new Client();
$client->setClient($guzzle);
$filename = tempnam('/tmp', 'file-cookies');
$jar = new FileCookieJar($filename, $testSaveSessionCookie);
$client->setGuzzleCookieJar($jar);
$client->getCookieJar()->set(new Cookie('test', '123'));
$client->getCookieJar()->set(new Cookie('foo', 'bar', time() + 1000));
$client->request('GET', 'http://www.example.com/');
// Call to destruct method manually to test saving cookies
$jar->__destruct();
// Make sure it wrote to the file
$contents = file_get_contents($filename);
$this->assertNotEmpty($contents);
// Load the cookieJar from the file
$cookieJarReloaded = new FileCookieJar($filename);
if ($testSaveSessionCookie) {
$this->assertEquals(2, count($cookieJarReloaded));
} else {
$this->assertEquals(1, count($cookieJarReloaded));
}
unlink($filename);
}