View on GitHub

SimplecURL

Easy to use HTTP Client for PHP

SimplecURL Documentation

This project is archived. Use at your own caution.


Welcome to the SimplecURL docs! SimplecURL is an object-oriented wrapper around PHP’s ext-curl. It allows for easy and quick HTTP requests.

$client = new SimplecURL\Client;
$res = $client->request('GET', 'http://127.0.0.1:8080/');

echo $res->getBody();

Table of Contents