PHP code example of kubotak-is / hhcurl

1. Go to this page and download the library: Download kubotak-is/hhcurl library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kubotak-is / hhcurl example snippets


$curl = new HHCurl\Curl();
\HH\Asio\join($curl->get('http://www.example.com/'));

$curl = new HHCurl\Curl();
\HH\Asio\join($curl->get('http://www.example.com/search', [
    'q' => 'keyword',
]));

$curl = new HHCurl\Curl();
\HH\Asio\join($curl->post('http://www.example.com/login/', [
    'username' => 'myusername',
    'password' => 'mypassword',
]));

$curl = new HHCurl\Curl();
$curl->setBasicAuthentication('username', 'password');
$curl->setUserAgent('');
$curl->setReferrer('');
$curl->setHeader('X-Requested-With', 'XMLHttpRequest');
$curl->setCookie('key', 'value');
\HH\Asio\join($curl->get('http://www.example.com/'));

if ($curl->error) {
    echo $curl->error_code;
}
else {
    echo $curl->response;
}

var_dump($curl->request_headers);
var_dump($curl->response_headers);

$curl = new HHCurl\Curl();
$curl->setOpt(CURLOPT_RETURNTRANSFER, TRUE);
$curl->setOpt(CURLOPT_SSL_VERIFYPEER, FALSE);
\HH\Asio\join($curl->get('https://encrypted.example.com/'));

$curl = new HHCurl\Curl();
\HH\Asio\join($curl->put('http://api.example.com/user/', [
    'first_name' => 'Zach',
    'last_name' => 'Borboa',
]));

$curl = new HHCurl\Curl();
\HH\Asio\join($curl->patch('http://api.example.com/profile/', [
    'image' => '@path/to/file.jpg',
]));

$curl = new HHCurl\Curl();
\HH\Asio\join($curl->delete('http://api.example.com/user/', [
    'id' => '1234',
]));

$curl->close();

// Example access to curl object.
curl_set_opt($curl->curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1');
curl_close($curl->curl);
sh
$ hhvm --php $(which composer)