Download the PHP package joinww/httpclient without Composer
On this page you can find all versions of the php package joinww/httpclient. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download joinww/httpclient
More information about joinww/httpclient
Files in joinww/httpclient
Download joinww/httpclient
More information about joinww/httpclient
Files in joinww/httpclient
Vendor joinww
Package httpclient
Short Description httpclient components for get/post/put/delete request
License
Package httpclient
Short Description httpclient components for get/post/put/delete request
License
Please rate this library. Is it a good library?
Informations about the package httpclient
httpclient
HttpClient is a sample components for connect url
How to use
require_once 'path/vendor/autoload.php';
$httpClient = new HttpClient\Client();
$url = 'https://www.baidu.com/s?wd=php';
$response = $httpClient->get($url);
var_dump($response->getBody());
$url = 'http://127.0.0.1/tests/post.php';
$params = ['wd'='php'];
$cookies = ['st'=>1,'ad'=>1];
$response = $httpClient->post($url,$params,$cookies);
var_dump($response->getBody());
All versions of httpclient with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
The package joinww/httpclient contains the following files
Loading the files please wait ....