Rumah > Artikel > pembangunan bahagian belakang > 用php发https请求
这篇文章主要介绍了用php发https请求 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
最近要用到, 所以写了个程序测试一下用php发https请求, 直接在http://www.dooccn.com/php7/中运行:
<?php function curl_get_https($url) { $curl = curl_init(); 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, false); // 跳过检查 $tmpInfo = curl_exec($curl); curl_close($curl); return $tmpInfo; //返回json对象 } $url = "https://www.baidu.com"; // $url = "https://115.159.119.33"; $result = curl_get_https($url); var_dump($result); ?>
结果OK
相关推荐:
Atas ialah kandungan terperinci 用php发https请求 . Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!