未捕获的错误:找不到类“ HttpRequest”

时间:2019-03-22 07:43:53

标签: php dll httprequest

下面是我的PHP代码:

$request = new HttpRequest();
$request->setUrl('https://api.cc.email/v3/contacts/contact_id');
$request->setMethod(HTTP_METH_GET);

$request->setHeaders(array(
  'Cache-Control' => 'no-cache',
  'Authorization' => 'Bearer {access_token}',
  'Content-Type' => 'application/json',
  'Accept' => 'application/json'
));

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}

出现错误:

  

未捕获的错误:找不到类'HttpRequest'

我从中得到了解决方案。我尝试过:

  1. http://originaldll.com/file/php_http.dll/19366.html
  2. 下载了 php_http.dll
  3. 将dll放入 D:\ Xampp \ php \ ext
  4. php.ini
  5. 中添加extension = php_http.dll
  6. 重新启动系统。

但是错误仍然存​​在。我怎样才能解决这个问题? 我的php版本是: 7.1.8

0 个答案:

没有答案