本文整理汇总了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'];
}
示例2: testUnsupportedMethod
public function testUnsupportedMethod()
{
$this->setExpectedException('Exception');
$res = new HTTP_Request('PATCH', '/');
$res->send();
}