Two examples of curl functions used in PHP (login/soap)

Source: Internet
Author: User
Tags curl soap

example, Analog landing

The code is as follows Copy Code
/**
* Analog Landing
* $url Request Address
* $post the data to be post
* $cookie cookies to be taken at the time of landing
* $cookiejar where the cookie is to be stored, such as/tmp/test.cookie
* $referer page address
*
**/
function Vcurl ($url, $post = ', $cookie = ', $cookiejar = ', $referer = ') {
$tmpInfo = ';
A file for storing cookies
Initialize Curl
$curl = Curl_init ();
Set the target URL
curl_setopt ($curl, Curlopt_url, $url);
Use the browser proxy currently in use
curl_setopt ($curl, curlopt_useragent, $_server[' http_user_agent ']);
curl_setopt ($curl, Curlopt_useragent, "mozilla/4.0" (compatible; MSIE 6.0; Windows NT 5.0) ");
Sets the Referer header if there is a ref parameter, otherwise automatically sets the Referer header
if ($referer) {
curl_setopt ($curl, Curlopt_referer, $referer);
} else {
curl_setopt ($curl, Curlopt_autoreferer, 1);
}
If there is a post data parameter, the method is post and the data is set, otherwise the get
if ($post) {
Send a regular POST request with the default type: Application/x-www-form-urlencoded,www.111cn.net form submission
curl_setopt ($curl, Curlopt_post, 1);
curl_setopt ($curl, Curlopt_postfields, $post);
}
If there is a cookie parameter, set the
if ($cookie) {
curl_setopt ($curl, Curlopt_cookie, $cookie);
}
If there is a cookie file parameter, set the access cookie file name
if ($cookiejar) {
curl_setopt ($curl, Curlopt_cookiejar, $cookiejar);
curl_setopt ($curl, Curlopt_cookiefile, $cookiejar);
}
If it is 302 transfer, then return the transferred URL and content
curl_setopt ($curl, curlopt_followlocation, 1);
Sets the maximum number of seconds to execute
curl_setopt ($curl, curlopt_timeout, 100);
Returns whether header information is included in the content
curl_setopt ($curl, Curlopt_header, 0);
To have the returned result in a file or variable instead of appearing directly in the browser
curl_setopt ($curl, Curlopt_returntransfer, 1);
Return result after function is executed
$tmpInfo = curl_exec ($curl);
If an error occurs, an error message is displayed
if (Curl_errno ($curl)) {
$tmpInfo = ' <pre><b> error: </b><br/> '. Curl_error ($curl);
}
Close Curl Object
Curl_close ($curl);
return results
return $tmpInfo;
}

examples, soap

The code is as follows Copy Code
function Vcurlsoap ($url, $SoapRequest, $SoapAction) {
$ch = Curl_init ();//initiate Curl Session
curl_setopt ($ch, CU Rlopt_url, $url); Set to URL to post to
curl_setopt ($ch, Curlopt_returntransfer, 1);//return data in a variable
curl_setopt ( $ch, Curlopt_header, 0);
curl_setopt ($ch, Curlopt_post, 1);
curl_setopt ($ch, Curlopt_postfields, $SoapRequest);//Post the XML
curl_setopt ($ch, curlopt_timeout, 60); Set timeout in seconds
curl_setopt ($ch, Curlopt_ssl_verifypeer, 0);
$header = Array ("Content-type:text/xml " );
$header [] = "content-length:". strlen ($SoapRequest);
if (! Is_null ($SoapAction))
$header [] = ' soapaction: '. $SoapAction. '"';
curl_setopt ($ch, Curlopt_httpheader, $header);
$xmlResponse = curl_exec ($ch);
Curl_close ($ch);
return $xmlResponse;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.