Examples of Curl Get/post in PHP (including HTTPS protocol)

Source: Internet
Author: User
Tags curl urlencode ssl certificate

Get method

The code is as follows Copy Code
$url = "http://www.111cn.net/index.php?a=b&c=d&e=f&g=". UrlEncode (' Wang Lu personal blog ');
$ch = Curl_init ();
curl_setopt ($ch, Curlopt_url, $url);
curl_setopt ($ch, Curlopt_returntransfer, 1); Requires the result to be a string and output to the screen
curl_setopt ($ch, Curlopt_header, 0); Do not HTTP header speed efficiency
curl_setopt ($ch, Curlopt_useragent, ' mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0);
curl_setopt ($ch, Curlopt_timeout, 15);
$output = curl_exec ($ch);
Curl_close ($ch);
Var_dump ($output);


Post method

  code is as follows copy code
$url = "http://www.111cn.net/index.php";
$params = "a=b&c=d&e=f&g=". UrlEncode (' Wang Lu personal blog ');
$ch = Curl_init ();
curl_setopt ($ch, Curlopt_url, $url);
curl_setopt ($ch, Curlopt_returntransfer, 1);   //requires the result to be a string and output to the screen
curl_setopt ($ch, Curlopt_ HEADER, 0); Do not increase the efficiency of HTTP headers
curl_setopt ($ch, Curlopt_useragent, ' mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0);
curl_setopt ($ch, Curlopt_timeout, 15);
 
curl_setopt ($ch, Curlopt_post, 1);   //POST commit mode
curl_setopt ($ch, Curlopt_ Postfields, $params);
 
$output = curl_exec ($ch);
Curl_close ($ch);
Var_dump ($output);

When requesting data for HTTPS, a certificate is required, and the following two parameters are added to circumvent the SSL certificate check

The code is as follows Copy Code

curl_setopt ($ch, Curlopt_ssl_verifypeer, FALSE); HTTPS request does not verify certificate and hosts
curl_setopt ($ch, Curlopt_ssl_verifyhost, FALSE);

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.