phyrexia / http
PHP PSR-7 compatible HTTP client (using cURL)
Installs: 2 536
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^5.3 || ^7.0 || ^8.0
- ext-curl: *
- guzzlehttp/psr7: ^1.0
- psr/http-message: ^1.0
Provides
README
PHP PSR-7 compatible HTTP client (using cURL)
Requirements
- PHP >= 5.3
- PHP extension curl
- Composer psr/http-message ^1.0
- Composer guzzlehttp/psr7 ^1.0
Installation
Install directly via Composer:
$ composer require phyrexia/http
Basic Usage
<?php require 'vendor/autoload.php'; use Phyrexia\Http\Client as HttpClient; //HTTP GET to www.google.fr $response = HttpClient::get('http://www.google.fr'); //And now with a query string $response = HttpClient::get('http://www.google.fr', 'a=1&b=c'); //Query string in array format $response = HttpClient::get('http://www.google.fr', array('a' => 1, 'b' => 'c')); //An HTTP POST with some data $response = HttpClient::post('http://www.google.fr', array('user' => 'test', 'submit' => 1)); //You can also build an HttpClient object, and provide cURL options (::get, ::post and ::head support cURL options too) $client = new HttpClient('http://www.google.fr', 'GET', array(CURLOPT_CONNECTTIMEOUT => 2, CURLOPT_TIMEOUT => 5)); $response = $client->send(); //The response is a Response object, if you just want the body, you can cast it as a string $body = (string)HttpClient::get('http://www.google.fr');