本文整理汇总了PHP中Httpful\Request::resetIni方法的典型用法代码示例。如果您正苦于以下问题:PHP Request::resetIni方法的具体用法?PHP Request::resetIni怎么用?PHP Request::resetIni使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Httpful\Request
的用法示例。
在下文中一共展示了Request::resetIni方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: call
/**
* Makes a call to the API.
*
* This method will make the actial API call by the given arguments. It
* will return the response on success (200) or will throw an exception
* on failure.
*
* @param string $method The HTTP method to use (e.g. Http::GET, Http::POST, etc.).
* @param string $resourcePath The path to the resource (e.g. contacts/john@example.com/)
* @param string $payload The data that is sent to the service. Not used for GET or DELETE.
* @return \Httpful\Response The response object from the service.
* @throws \Gan\ApiException
*/
public function call($method, $resourcePath, $payload = null)
{
$uri = $this->baseUri . $resourcePath;
Request::ini($this->requestTemplate);
$request = Request::init($method)->uri($uri);
if ($payload) {
$request->body($payload);
}
try {
$response = $request->send();
} finally {
Request::resetIni();
}
if (floor($response->code / 100) != 2) {
throw new ApiException($response);
}
return $response;
}
示例2: testIni
function testIni()
{
// Test setting defaults/templates
// Create the template
$template = Request::init()->method(Http::POST)->withStrictSsl()->expectsType(Mime::HTML)->sendsType(Mime::FORM);
Request::ini($template);
$r = Request::init();
$this->assertTrue($r->strict_ssl);
$this->assertEquals(Http::POST, $r->method);
$this->assertEquals(Mime::HTML, $r->expected_type);
$this->assertEquals(Mime::FORM, $r->content_type);
// Test the default accessor as well
$this->assertTrue(Request::d('strict_ssl'));
$this->assertEquals(Http::POST, Request::d('method'));
$this->assertEquals(Mime::HTML, Request::d('expected_type'));
$this->assertEquals(Mime::FORM, Request::d('content_type'));
Request::resetIni();
}