本文整理汇总了PHP中SimpleHttpRequest::setCookie方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleHttpRequest::setCookie方法的具体用法?PHP SimpleHttpRequest::setCookie怎么用?PHP SimpleHttpRequest::setCookie使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleHttpRequest
的用法示例。
在下文中一共展示了SimpleHttpRequest::setCookie方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testHttp
function testHttp()
{
$http = new SimpleHttpRequest("www.lastcraft.com/test/network_confirm.php?gkey=gvalue");
$http->setCookie(new SimpleCookie("ckey", "cvalue"));
$this->assertIsA($reponse = $http->fetch(), "SimpleHttpResponse");
$this->assertEqual($reponse->getResponseCode(), 200);
$this->assertEqual($reponse->getMimeType(), "text/html");
$this->assertWantedPattern('/A target for the SimpleTest test suite/', $reponse->getContent());
$this->assertWantedPattern('/gkey=gvalue/', $reponse->getContent());
$this->assertWantedPattern('/ckey=cvalue/', $reponse->getContent());
}
示例2: addHeaders
/**
* Adds the current cookies to a request.
* @param SimpleHttpRequest $request Request to modify.
* @param SimpleUrl $url Cookie selector.
* @access private
*/
function addHeaders(&$request, $url)
{
$cookies = $this->getValidCookies($url->getHost(), $url->getPath());
foreach ($cookies as $cookie) {
$request->setCookie($cookie);
}
}
示例3: fetchUrl
/**
* Fetches a URL performing the standard tests.
* @param $url Target to fetch as string.
* @param $request Test version of SimpleHttpRequest.
* @return Content of page.
* @access public
*/
function fetchUrl($url, $request = false)
{
if (!is_object($request)) {
$request = new SimpleHttpRequest($url);
}
foreach ($this->_cookie_jar->getValidCookies() as $cookie) {
$request->setCookie($cookie);
}
$this->_response = $request->fetch();
$this->_checkExpectations($url, $this->_response);
foreach ($this->_response->getNewCookies() as $cookie) {
$parsed_url = new SimpleUrl($url);
if ($parsed_url->getHost()) {
$cookie->setHost($parsed_url->getHost());
}
$this->_cookie_jar->setCookie($cookie);
}
return $this->_response->getContent();
}
示例4: testMultipleCookieWriting
function testMultipleCookieWriting()
{
$request = new SimpleHttpRequest("a.valid.host/and/path");
$request->setCookie(new SimpleCookie("a", "A"));
$request->setCookie(new SimpleCookie("b", "B"));
$socket =& new MockSimpleSocket($this);
$socket->setReturnValue("isError", false);
$socket->expectArgumentsSequence(2, "write", array("Cookie: a=A;b=B\r\n"));
$request->fetch($socket);
$socket->tally();
}