| Package Information |
| Summary |
Extended HTTP Support |
| Maintainers |
Michael Wallner <mike@php.net> (lead) [details]
|
| License |
BSD, revised |
| Description |
Extended HTTP support. Again. Keep in mind that it's got the major version 2, because it's incompatible with pecl_http v1.
* Introduces the http namespace.
* Message bodies have been remodeled to use PHP temporary streams instead of in-memory buffers.
* The utterly misunderstood HttpResponse class has been reimplemented as httpEnvResponse inheriting httpMessage.
* Currently, there's only one Exception class left, httpException.
* Errors triggered by the extension can be configured statically by httpObject::$defaultErrorHandling or inherited httpObject->errorHandling.
* The request ecosystem has been modularized to support different libraries, though for the moment only libcurl is supported. |
Release notes Version 0.25.0 (beta) |
* Fixed bug #6924 (Linking fails on Mac OSX).
* Fixed HttpRequest::addRawPostData().
- Renamed HttpQueryString::getInstance() to more commonly used ::singleton().
- Renamed HttpQueryString::iconv() to more generic ::xlate().
+ Added feature request http_put_data() and HttpRequest::(set|get|add)PutData().
+ Added 'range' request option.
+ Added 'proxytype' request option.
+ Added HTTP_PROXY_HTTP, HTTP_PROXY_SOCKS4, HTTP_PROXY_SOCKS5 constants. |
|