当前位置:Gxlcms > PHP教程 > 用php发https请求

用php发https请求

时间:2021-07-01 10:21:17 帮助过:26人阅读

这篇文章主要介绍了用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

相关推荐:

PHP发布WebService的实例分享

php发送数据到kafka实现代码

以上就是用php发https请求 的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行