本文整理汇总了PHP中SimpleHttpRequest::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleHttpRequest::fetch方法的具体用法?PHP SimpleHttpRequest::fetch怎么用?PHP SimpleHttpRequest::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleHttpRequest
的用法示例。
在下文中一共展示了SimpleHttpRequest::fetch方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: testContentHeadersCalculatedWithXmlEntityBody
public function testContentHeadersCalculatedWithXmlEntityBody()
{
$socket = new MockSimpleSocket();
$socket->expectAt(0, 'write', array("Content-Length: 27\r\n"));
$socket->expectAt(1, 'write', array("Content-Type: text/xml\r\n"));
$socket->expectAt(2, 'write', array("\r\n"));
$socket->expectAt(3, 'write', array("<a><b>one</b><c>two</c></a>"));
$route = new MockSimpleRoute();
$route->setReturnReference('createConnection', $socket);
$route->expect('createConnection', array('POST', 15));
$request = new SimpleHttpRequest($route, new SimplePostEncoding('<a><b>one</b><c>two</c></a>', 'text/xml'));
$this->assertIsA($request->fetch(15), 'SimpleHttpResponse');
}
示例3: testContentHeadersCalculated
function testContentHeadersCalculated()
{
$socket = new MockSimpleSocket();
$socket->expectArgumentsAt(0, 'write', array("Content-Length: 3\r\n"));
$socket->expectArgumentsAt(1, 'write', array("Content-Type: application/x-www-form-urlencoded\r\n"));
$socket->expectArgumentsAt(2, 'write', array("\r\n"));
$socket->expectArgumentsAt(3, 'write', array("a=A"));
$route = new MockSimpleRoute();
$route->setReturnReference('createConnection', $socket);
$route->expectArguments('createConnection', array('POST', 15));
$request = new SimpleHttpRequest($route, new SimplePostEncoding(array('a' => 'A')));
$this->assertIsA($request->fetch(15), 'SimpleHttpResponse');
}
示例4: 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();
}
示例5: 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();
}