dev-composer
dev-composerCurl class for php
The Development Requires
dev-master
9999999-devCurl class for php
The Development Requires
PHP Curl Class is an object-oriented wrapper of the PHP cURL extension.
Curl is an object-oriented wrapper of the PHP cURL extension., (*1)
Add the following lines to composer.json
, (*2)
{ "require": { "rockerboo/curl": "dev-master", } }
Update composer, (*3)
composer update
Require the composer autoloader, if you haven't already, (*4)
require 'vendor/autoload.php';
use rockerboo\curl\Curl; $curl = new Curl(); $curl->get('http://www.example.com/');
use rockerboo\curl\Curl; $curl = new Curl(); $curl->get('http://www.example.com/search', array( 'q' => 'keyword', ));
use rockerboo\curl\Curl; $curl = new Curl(); $curl->post('http://www.example.com/login/', array( 'username' => 'myusername', 'password' => 'mypassword', ));
use rockerboo\curl\Curl; $curl = new Curl(); $curl->setBasicAuthentication('username', 'password'); $curl->setUserAgent(''); $curl->setReferrer(''); $curl->setHeader('X-Requested-With', 'XMLHttpRequest'); $curl->setCookie('key', 'value'); $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);
use rockerboo\curl\Curl; $curl = new Curl(); $curl->setOpt(CURLOPT_RETURNTRANSFER, TRUE); $curl->setOpt(CURLOPT_SSL_VERIFYPEER, FALSE); $curl->get('https://encrypted.example.com/');
use rockerboo\curl\Curl; $curl = new Curl(); $curl->put('http://api.example.com/user/', array( 'first_name' => 'Zach', 'last_name' => 'Borboa', ));
use rockerboo\curl\Curl; $curl = new Curl(); $curl->patch('http://api.example.com/profile/', array( 'image' => '@path/to/file.jpg', ));
use rockerboo\curl\Curl; $curl = new Curl(); $curl->delete('http://api.example.com/user/', array( '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);
use rockerboo\curl\Curl; // Requests in parallel with callback functions. $curl = new Curl(); $curl->setOpt(CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1'); $curl->success(function($instance) { echo 'call was successful. response was' . "\n"; echo $instance->response . "\n"; }); $curl->error(function($instance) { echo 'call was unsuccessful.' . "\n"; echo 'error code:' . $instance->error_code . "\n"; echo 'error message:' . $instance->error_message . "\n"; }); $curl->complete(function($instance) { echo 'call completed' . "\n"; }); $curl->get(array( 'https://duckduckgo.com/', 'https://search.yahoo.com/search', 'http://www.bing.com/search', 'http://www.dogpile.com/search/web', 'https://www.google.com/search', 'https://www.wolframalpha.com/input/', ), array( 'q' => 'hello world', ));
Curl class for php
Curl class for php