anqin/httpcurl

为 thinkphp6 编写的 curl 类

1.0.0 2020-03-13 09:15 UTC

This package is auto-updated.

Last update: 2024-09-15 15:49:45 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();// 释放内存,防止内存泄漏