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


PHP HTTP_Request::send方法代码示例

本文整理汇总了PHP中HTTP_Request::send方法的典型用法代码示例。如果您正苦于以下问题:PHP HTTP_Request::send方法的具体用法?PHP HTTP_Request::send怎么用?PHP HTTP_Request::send使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HTTP_Request的用法示例。


在下文中一共展示了HTTP_Request::send方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _request

 /**
  * _request
  * 发出请求,统一错误解析
  *
  * @param string $type
  * @param array $data
  * @param bool $isPost
  *
  * @return array
  */
 private function _request($type, $data = array(), $isPost = false)
 {
     // 需要 appToken
     if (!$data['appToken'] && !in_array($type, $this->noNeedAppToken)) {
         $data['appToken'] = $this->getAppToken();
     }
     // 需要 accessToken
     if (!$data['accessToken'] && !in_array($type, $this->noNeedAccessToken)) {
         $data['accessToken'] = $this->getAccessToken();
     }
     // 请求地址
     $requestUrl = $this->apiHost . $type;
     // 指定请求的超时时间
     $httpRequest = new HTTP_Request($requestUrl, HTTP_Request::METHOD_GET, array('connect_timeout' => 1, 'timeout' => 2));
     // 文件上传
     if ($type == '/v1/thread/upload') {
         $httpRequest->addFileParameter('pic', $data['pic']);
         unset($data['pic']);
     }
     // post数据
     if ($isPost) {
         $httpRequest->setMethod(HTTP_Request::METHOD_POST);
         foreach ($data as $name => $value) {
             $httpRequest->addPostParameter($name, $value);
         }
     } else {
         $httpRequest->setUrl($requestUrl . '?' . http_build_query($data));
     }
     // 发送请求
     try {
         $response = $httpRequest->send();
         $result = json_decode($response->getBody(), true);
     } catch (Exception $e) {
         throw new Exception($e->getMessage(), $e->getCode());
     }
     if ($response->getStatus() != 200) {
         throw new Exception('接口请求失败', $response->getStatus());
         return false;
     }
     if ($result['errCode']) {
         throw new Exception($result['errMsg'], $result['errCode']);
         return false;
     }
     return $result['data'];
 }
开发者ID:noikiy,项目名称:AppCenter,代码行数:55,代码来源:WSQ.php

示例2: testUnsupportedMethod

 public function testUnsupportedMethod()
 {
     $this->setExpectedException('Exception');
     $res = new HTTP_Request('PATCH', '/');
     $res->send();
 }
开发者ID:thomseddon,项目名称:http,代码行数:6,代码来源:HTTPTest.php


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