JHttpTransportCurl
Implements \JHttpTransportHTTP transport class for using cURL.
| 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(string $content) : \JHttpResponse
| since |
11.3 |
|---|---|
| throws |
|
Arguments
- $content
stringThe complete server response, including headers.
Response
isSupported
Method to check if HTTP transport cURL is available for use
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.