vis/curl_client_l5

PHP cUrl extension wrapper

1.0.3 2017-05-08 18:26 UTC

This package is not auto-updated.

Last update: 2024-04-26 21:43:46 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();