Skip to content

Commit

Permalink
added base example
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Feb 4, 2008
1 parent 9f5fe02 commit f9fdfeb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions httplib.php
Expand Up @@ -2,6 +2,12 @@
/**
* A lightweight HTTP library which acts very similar to
* the Python httplib.
* <code>
* $conn = new HTTPConnection('google.com');
* $conn->request('GET', '/', array('q'=>'http'));
* $response = $conn->getresponse();
* $data = $response->read();
* </code>
* @author David Cramer <dcramer@gmail.com>
* @version 1.0
* @package httplib
Expand Down

0 comments on commit f9fdfeb

Please sign in to comment.