anqin/httpcurl

curl class for thinkphp6

1.0.0 2020-03-13 09:15 UTC

This package is auto-updated.

Last update: 2024-04-15 14:56:37 UTC


README

安装

composer require anqin/httpcurl

使用

该库暂不支持文件提交

$http = new HttpCurl();

$resp = $http->get('https://www.baidu.com')->exec();

$resp = $http->post('https://www.baidu.com',['aaa'=>'bbb'])->exec();

$resp->toString(); //返回字符串

$resp->toArray(); //返回数组

$resp->close();//释放内存,防止内存泄漏