本文整理汇总了PHP中Guzzle\Http\Message\RequestFactory::create方法的典型用法代码示例。如果您正苦于以下问题:PHP RequestFactory::create方法的具体用法?PHP RequestFactory::create怎么用?PHP RequestFactory::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Guzzle\Http\Message\RequestFactory
的用法示例。
在下文中一共展示了RequestFactory::create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create
/**
* {@inheritdoc}
*/
public function create($method, $url, $headers = null, $body = null, array $options = array())
{
/** @var Request $request */
$request = parent::create($method, $url, $headers, $body);
$request->getQuery()->setAggregator(new DuplicateAggregator());
return $request;
}
示例2: create
/**
* {@inheritdoc}
*/
public function create($method, $url, $headers = null, $body = null, array $options = array())
{
/** @var RequestInterface $request */
$request = parent::create($method, $url, $headers, $body, $options);
// Java web services do not expect [] behind multi-valued query string parameter names.
// PHP: foo[]=1&foo[]=2
// Java: foo=1&foo=2
$request->getQuery()->setAggregator(new DuplicateAggregator());
return $request;
}
示例3: testUrl
public function testUrl()
{
$app = $this->getApp();
if ($app['deprecated.php']) {
$factory = new RequestFactory();
$request = $factory->create('GET', '/');
$response = new V3Response('200');
$guzzle = $this->getMock('Guzzle\\Service\\Client', array('get', 'send'));
$request->setClient($guzzle);
$guzzle->expects($this->once())->method('send')->will($this->returnValue($response));
} else {
$factory = new MessageFactory();
$request = $factory->createRequest('GET', '/');
$response = new Response('200');
$guzzle = $this->getMock('GuzzleHttp\\Client', array('get'));
}
$guzzle->expects($this->once())->method('get')->with('http://loripsum.net/api/1/veryshort')->will($this->returnValue($request));
$app['guzzle.client'] = $guzzle;
$app['prefill']->get('/1/veryshort');
}