当前位置: 首页>>代码示例>>PHP>>正文


PHP Request::resetIni方法代码示例

本文整理汇总了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;
 }
开发者ID:getanewsletter,项目名称:api-php,代码行数:31,代码来源:Api.php

示例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();
 }
开发者ID:noahkim,项目名称:kowop,代码行数:18,代码来源:HttpfulTest.php


注:本文中的Httpful\Request::resetIni方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。