Package Information |
Summary |
Provides server-side request and response objects. |
Maintainers |
Paul Jones (lead)
[details]
John Boehr <
jbboehr at gmail dot com >
(lead)
[details]
|
License |
MIT |
Description |
This extension provides server-side request and response objects for PHP.
These are *not* HTTP message objects proper. They are more like wrappers for existing global PHP variables and functions.
Four classes and one interface are defined in the global namespace:
- _SapiRequest_, composed of read-only copies of PHP superglobals and some other commonly-used values.
- _SapiUpload_, a value-object style descriptor of each uploaded file.
- _SapiResponse_ and _SapiResponseInterface_, essentially a wrapper around (and buffer for) response-related PHP functions.
- _SapiResponseSender_, for sending a _SapiResponse_. |
Homepage |
https://github.com/pmjones/ext-request
|
Release notes
Version 1.0.0b2
(beta)
|
Added:
- Support for multiple header callbacks, a la header_register_callback, with new methods ServerResponse::setHeaderCallbacks(), addHeaderCallback(), and getHeaderCallbacks(). |