tanchengjin / curl
php curl 操作
v2.0.0
2020-04-16 05:23 UTC
Requires
- php: >=5.6
- ext-curl: *
This package is auto-updated.
Last update: 2024-09-16 15:59:53 UTC
README
安装 安装
composer
composer require tanchengjin/curl
使用 使用
TanChengjin\Curl\Curl::request($url, $https = false, $post = false, array $data = []);
链式 链式方法
$curl=new TanChengjin\Curl\Curl();
#get
$curl->setUrl(url)->setHttps()->get();
or
$curl->get(url,$https=true);
#post
$curl->setUrl(url)->setHttps()->post();
or
$curl->post(url,true,[postData]);