This is a PHP class to make cURL library easier to use
Following code shows how to use this class
$http = newdcai\curl;
// enable cache$http = newdcai\curl(array('cache'=>true));
// enable cookie$http = newdcai\curl(array('cookie'=>true));
// enable proxy$http = newdcai\curl(array('proxy'=>true));
// HTTP GET$response = $http->get('http://example.com');
// HTTP POST$response = $http->post('http://example.com/', array('q'=>'words', 'name'=>'moodle'));
// POST RAW$xml = '<action>perform</action>';
$response = $http->post('http://example.com/', $xml);
// HTTP PUT$response = $http->put('http://example.com/', array('file'=>'/var/www/test.txt');