vis / curl_client_l5
PHP cUrl extension wrapper
Installs: 1 973
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
This package is not auto-updated.
Last update: 2024-11-09 00:01:43 UTC
README
PHP cUrl extension wrapper.
Execute
composer require "vis/curl_client_l5":"1.*"
Usage
$curl = New Vis/CurlClient/CurlClient(); //example of all possible methods $curl->setRequestCredentials($login, $password, $authType) //$authType is optional ->setRequestHeader($option, $value) //$option accepts array ["option" => "value", "option1" => "value1"] ->setRequestCookie($option, $value) //$option accepts array ["option" => "value", "option1" => "value1"] ->setRequestReferrer($referrer) ->setRequestUserAgent($agent) ->setRequestMethod($method) // 'POST', 'GET', 'PUT', 'PATCH', 'DELETE' ->setRequestUrl($url,$urlParams) //$urlParam is optional if you need to add params to query string ->setRequestPayload($payload, $encoding) // $encoding is optional. Accepts either 'json' or 'query' and encodes payload to given format, otherwise doesn't encode. ->setCurlOpt($option, $value) //if you need to set any other additional curl options
To execute curl request
$curl->doCurlRequest() //returns self
After that you can get request response with following methods
$curl->getCurlResponse(); //returns array ['http_code', 'response_header', 'response_body'] $curl->getCurlResponseHttpCode(); //returns http_code $curl->getCurlResponseHeader(); //returns response_header $curl->getCurlResponseBody(); //returns response_body
Also you can use helper method isSuccessful to check if response http code was in range from 200 to 300
$curl->isSuccessful();
If you wish to close curl resource earlier (this method is also executed upon destruction of object)
$curl->doCloseCurl();