PHP Classes

File: examples.php

Recommend this page to a friend!
  Classes of Mustafa TURAN   REST HTTP   examples.php   Download  
File: examples.php
Role: Example script
Content type: text/plain
Description: samples
Class: REST HTTP
Send HTTP requests to REST Web servers
Author: By
Last change: Update of examples.php
Date: 2 months ago
Size: 679 bytes
 

Contents

Class file image Download
<?php
// load dependencies
require_once dirname(__FILE__) . "/RestHttp/Client.php";

// setup client
$client = new RestHttp\Client("http://search.twitter.com");

// make request
// tip: use post/put/delete instead of $client->get
$response = $client->get('/search.json', null, array('q' => "rest http php"));

// see results as text
header("Content-type: text/plain");

// echo results
echo "---------------------------------------\n";
echo
$response['http_code'];
echo
"\n\n\n";

echo
"---------------------------------------\n";
echo
$response['header'];
echo
"\n\n\n";

echo
"---------------------------------------\n";
echo
$response['body'];

// close
$client = null;
?>