openprovider/http
最新稳定版本:1.0.11
Composer 安装命令:
composer require openprovider/http
包简介
Openprovider Http Service
README 文档
README
A simple HTTP PHP library based on Curl, which helps to create HTTP request and get convenient response.
Current version
1.0.11
Examples
use \Openprovider\Service\Http\Request; use \Openprovider\Service\Http\Response; $response = Request::get('google.com')->execute(); $status = $response->getHttpStatusCode(); if ($response->isSuccess) { $cookie = $response->getCookie(); $header = $response->getHeader(); $data = $response->getData(); } else { print_r($response->getErrorCode() . ': ' . $response->getErrorDescription()); }
use \Openprovider\Service\Http\Request; use \Openprovider\Service\Http\Response; $request = new Request('website.com'); $response = $request->setFollowLocation(false) ->setMethod(Request::POST) ->setTimeout(10) ->setCookie('PREF=ID; Name=Noname') ->execute();
Authors
Contributors
All the contributors are welcome. If you would like to be the contributor please accept some rules.
- The pull requests will be accepted only in "develop" branch
- All modifications or additions should be tested
Thank you for your understanding!
License
统计信息
- 总下载量: 7.62k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-12-29