JHttpTransportStream
Implements \JHttpTransportHTTP transport class for using PHP streams.
| package |
Joomla.Platform |
|---|---|
| subpackage |
HTTP |
| since |
11.3 |
Methods
__construct
Constructor.
__construct(\JRegistry &$options)
getResponse
Method to get a response object from a server response.
getResponse(array $headers, string $body) : \JHttpResponse
| since |
11.3 |
|---|---|
| throws |
|
Arguments
- $headers
arrayThe response headers as an array.- $body
stringThe response body as a string.
Response
isSupported
method to check if http transport stream available for using
isSupported() : boolean
static
| since |
12.1 |
|---|
Response
booleantrue if available else false
request
Send a request to the server and return a JHttpResponse object with the response.
request(string $method, \JUri $uri, mixed $data = null, array $headers = null, integer $timeout = null, string $userAgent = null) : \JHttpResponse
| since |
11.3 |
|---|
Arguments
- $method
stringThe HTTP method for sending the request.- $uri
\JUriThe URI to the resource to request.- $data
mixedEither an associative array or a string to be sent with the request.- $headers
arrayAn array of request headers to send with the request.- $timeout
integerRead timeout in seconds.- $userAgent
stringThe optional user agent string to send with the request.