yiche/http

There is no license information available for the latest version (v1.1) of this package.

v1.1 2019-04-12 01:31 UTC

This package is not auto-updated.

Last update: 2024-09-21 03:45:08 UTC


README

http请求

集成

composer require yiche/http:dev-master

使用

use Yiche\Http\HttpClient;

//get
$http = new HttpClient();
$body = $http->get('https://www.baidu.com', ['a' => '111']);

//post
$http = new HttpClient();
$body = $http->post('https://www.baidu.com', json_encode(['a' => '111']));

版本更新

1.1版本

  • $http->setReqSaveLog(true/false);动态关闭该服务是否写入查询日志
  • 修复日志写入生成id构造方法放入具体调用生成