kittinan / php-http
php-http is a simple HTTP class with php5-curl
1.0.2
2016-07-02 05:10 UTC
Requires
- php: >=5
This package is auto-updated.
Last update: 2024-11-19 21:49:24 UTC
README
simple php http wrapper with php-curl
Support :
- HTTP Method GET, POST
- Download File
- Support Cookie with cookiejar file
Requirement
- PHP 5+
- php5-curl
Composer
Install the latest version with composer require kittinan/php-http
This plugin on the Packagist.
https://packagist.org/packages/kittinan/php-http
Usage
Example : HTTP GET
$http = new \KS\HTTP\HTTP(); $url = 'https://github.com/kittinan/php-http'; $html = $http->get($url); echo $html;
License
The MIT License (MIT)