Install the latest version with
$ composer require iggi/curlrequest
<?php
use Iggi\CurlRequest;
$curlRequest = new CurlRequest();
$response = $curlRequest->get("https://ignatisd.gr/hello")->exec();
print_r($response->toArray());
/*
array(
"activeCookies" => string[][],
"cookies" => string[][],
"code" => number,
"headers" => string[],
"error" => string,
"timing" => string,
"body" => string
)
*/
Ignatios Drakoulas - ignatisnb@gmail.com - https://twitter.com/ignatisd
CurlRequest is licensed under the MIT License - see the LICENSE file for details