-
Notifications
You must be signed in to change notification settings - Fork 0
Get
wmateam edited this page Apr 1, 2017
·
2 revisions
use wmateam\curling;
$url = 'https://httpbin.org/get';
$curl = new curling\CurlRequest($url);
$response = $curl->get();
use wmateam\curling;
$url = 'https://httpbin.org/get';
$curl = new curling\CurlRequest($url);
$response = $curl->get();// $response is instance of CurlResponse (src/CurlResponse.php)