CURL

From Sandoz

(Difference between revisions)
Jump to: navigation, search
203.38.191.178 (Talk)
(Created page with " Init =============== $s = curl_init(); curl_setopt($s,CURLOPT_URL,$this->_urlToOpen); curl_setopt($s,CURLOPT_HTTPHEADER,array('Expect:')); curl_setopt($s,CURLOPT_TIMEOUT,$this->...")
Newer edit →

Revision as of 01:30, 14 December 2010

Init

Contents

===

$s = curl_init(); curl_setopt($s,CURLOPT_URL,$this->_urlToOpen); curl_setopt($s,CURLOPT_HTTPHEADER,array('Expect:')); curl_setopt($s,CURLOPT_TIMEOUT,$this->_timeout);

How many redirection you want to follow

===========================

curl_setopt($s,CURLOPT_MAXREDIRS,$this->_maxRedirects); curl_setopt($s,CURLOPT_RETURNTRANSFER,true); curl_setopt($s,CURLOPT_FOLLOWLOCATION,$this->_followlocation);

Cookie

==

curl_setopt($s,CURLOPT_COOKIEJAR,$this->_cookieFileLocation); curl_setopt($s,CURLOPT_COOKIEFILE,$this->_cookieFileLocation);

Authentication

===

curl_setopt($s, CURLOPT_USERPWD, $this->auth_name.':'.$this->auth_pass);

Send post variables

=======
  curl_setopt($s,CURLOPT_POST,true);
  curl_setopt($s,CURLOPT_POSTFIELDS,$this->_postFields);

Include the header -================ curl_setopt($s,CURLOPT_HEADER,true);

Include the body

====

curl_setopt($s,CURLOPT_NOBODY,true);

Add user agent and referer

==============

curl_setopt($s,CURLOPT_USERAGENT,$this->_useragent); curl_setopt($s,CURLOPT_REFERER,$this->_referer);

Execute

==

$this->_webpage = curl_exec($s); $this->_status = curl_getinfo($s,CURLINFO_HTTP_CODE); $this->_error = curl_error($s);

        curl_close($s);

Using a proxy

=

curl_setopt($s, CURLOPT_PROXY, $this->_proxy); curl_setopt($s, CURLOPT_PROXYPORT, $this->_port); curl_setopt ($s, CURLOPT_PROXYUSERPWD, $this->_pass);

Personal tools