frieser/buzz

This package is abandoned and no longer maintained. No replacement package was suggested.

Lightweight HTTP client

v0.10 2013-05-19 03:41 UTC

This package is not auto-updated.

Last update: 2016-08-30 07:59:41 UTC


README

Build Status

Buzz is a lightweight PHP 5.3 library for issuing HTTP requests.

<?php

$browser = new Buzz\Browser();
$response = $browser->get('http://www.google.com');

echo $browser->getLastRequest()."\n";
echo $response;

You can also use the low-level HTTP classes directly.

<?php

$request = new Buzz\Message\Request('HEAD', '/', 'http://google.com');
$response = new Buzz\Message\Response();

$client = new Buzz\Client\FileGetContents();
$client->send($request, $response);

echo $request;
echo $response;