kyledong/http

a simple send http/https client

1.0.1 2021-11-23 09:43 UTC

This package is auto-updated.

Last update: 2025-07-26 18:09:48 UTC


README

a simple send http/https client

安装

composer require kyledong/http

示例

$client = Client::getInstance([
  //域名
  'base_uri' => '',
  //请求头
  'headers' => [],
  //false 不验证ssl,true 验证ssl
  'verify' => false
]);
//get请求
$data = $client->get('uri',[]);
//post请求
$data = $client->post('uri',[]);
//json格式请求
$data = $client->sendJson('uri',[],'GET');