infostars/net-curl
Composer 安装命令:
composer require infostars/net-curl
包简介
Simple curl wrapper
README 文档
README
Fase start
$curl = new curl();
$curl->prepare('https://github.com');
$content = $curl->execute();
Some tricks
$curl = new curl();
$curl->useProxy('1.2.3.4:3128', 'http');
$curl->setConnectionTimeout(10);
$curl->setTimeout(15);
$curl->setCookieFile('/custom/cookie/file');
$curl->addOptions([
CURLOPT_USERAGENT => 'Opera/9.80 (X11; Linux i686; Ubuntu/14.10) Presto/2.12.388 Version/12.16'
]);
$curl->prepare('https://github.com/search', ['q' => 'InfoStars LLC', 'type' => 'Users')
$content = $curl->execute();
Enjoy!
统计信息
- 总下载量: 10.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-16