. class cUrlHelper { private $header = array('Connection: Keep-Alive', 'Accept: text/xml'); private $useragent = 'dokuwiki-bugzillaHTTP plugin - php-cUrl'; private function setCurlOptions($handle) { curl_setopt($handle, CURLOPT_HTTPHEADER, $this->header); curl_setopt($handle, CURLOPT_USERAGENT, $this->useragent); curl_setopt($handle, CURLOPT_HTTPGET, 1); curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1); } public function fetchContent($url) { $handle = curl_init($url); $this->setCurlOptions($handle); $return = curl_exec($handle); curl_close($handle); return $return; } } ?>