Curl HTTPS access

Source: Internet
Author: User
Tags ssl certificate

If you visit an HTTPS Web page, it appears:

Curl: (+) SSL certificate problem:unable to get local issuer certificate

Will

Set Curlopt_ssl_verifypeer to False,
Set the Curlopt_ssl_verifyhost to False.

can be resolved.
The code is as follows:
<?php
$cURL = Curl_init ();
$url = ' http://www.51-n.com/';
Curl_setopt_array (
$cURL,
Array
Curlopt_url = $url,
Curlopt_referer = $url,
Curlopt_autoreferer = True,
Curlopt_returntransfer = True,
Curlopt_ssl_verifypeer = False,
Curlopt_ssl_verifyhost = False,
Curlopt_connecttimeout = 1,
Curlopt_timeout = 30,
Curlopt_useragent = ' mozilla/5.0 (Windows NT 6.1; WOW64) applewebkit/537.36 (khtml, like Gecko) chrome/34.0.1847.116 safari/537.36 '
)
);

Curl HTTPS access

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.