kittinan / php-http

simple php http wrapper with curl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-http

Build Status Code Coverage Scrutinizer Code Quality License

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)

About

simple php http wrapper with curl


Languages

Language:PHP 100.0%