59ed1e2396
This is my first port with code from PEAR, so I hope I got it right. I based it off of www/pear-HTTP. The HTTP_Client class wraps around HTTP_Request and provides a higher level interface for performing multiple HTTP requests. Features: * Manages cookies and referrers between requests * Handles HTTP redirection * Has methods to set default headers and request parameters * Implements the Subject-Observer design pattern: the base class sends events to listeners that do the response processing. PR: ports/76995 Submitted by: Joseph Scott <joseph@randomnetworks.com>
11 lines
446 B
Text
11 lines
446 B
Text
The HTTP_Client class wraps around HTTP_Request and provides a higher level
|
|
interface for performing multiple HTTP requests.
|
|
|
|
Features:
|
|
* Manages cookies and referrers between requests
|
|
* Handles HTTP redirection
|
|
* Has methods to set default headers and request parameters
|
|
* Implements the Subject-Observer design pattern: the base class sends
|
|
events to listeners that do the response processing.
|
|
|
|
WWW: http://pear.php.net/package/HTTP_Client/
|