本文整理汇总了PHP中HttpClient::from方法的典型用法代码示例。如果您正苦于以下问题:PHP HttpClient::from方法的具体用法?PHP HttpClient::from怎么用?PHP HttpClient::from使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpClient
的用法示例。
在下文中一共展示了HttpClient::from方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetCookies
public function testGetCookies()
{
$http = HttpClient::from(array('useRandomCookieFile' => true));
$body = $http->get('http://httpbin.org/cookies/set?k1=v1&k2=v2', array('header' => true));
$expected = array('k1' => 'v1', 'k2' => 'v2');
$this->assertEquals($expected, $http->cookies);
}
示例2: testGzip
public function testGzip()
{
$http = HttpClient::from();
$json = $http->get('http://httpbin.org/gzip');
$response = json_decode($json);
$this->assertNotNull($response);
$this->assertTrue($response->gzipped);
}
示例3: processFeed
/**
* @param Feed $feed
*/
public function processFeed($feed)
{
$body = \HttpClient::from()->get($this->url);
$feed->items = array_merge($feed->items, $this->parseItems($body, $feed));
}