Home  >  Article  >  Backend Development  >  php curl request https

php curl request https

不言
不言Original
2018-04-27 15:02:072438browse

The content of this article is about php curl request https, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

function curl_get_https($url){    $curl = curl_init(); // 启动一个CURL会话
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_HEADER, 0);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, true);  // 从证书中检查SSL加密算法是否存在
    $tmpInfo = curl_exec($curl);     //返回api的json对象
    //关闭URL请求
    curl_close($curl);    return $tmpInfo;    //返回json对象}

Related recommendations:

php curl requests the interface and gets the data


           


The above is the detailed content of php curl request https. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php generate csv fileNext article:php generate csv file