Easy to use http-client with fluent api.
$response = phore_http_request("http://localhost/test.php?case=200")
->send();
echo $response->getBody();More executable examples are available in examples/.
Request Caching requires phore/cache package to be installed
$cache = new Cache(new ObjectStore(new FileSystemObjectStoreDriver("/tmp/cache1")));
$req = phore_http_request("http://localhost/")->withCache($cache)->send();
if ($req->isFromCache() === true)
echo "From Cache: " . $req->getBody();
Examples: see examples/ and examples/README.md.