用php发https请求
程序员文章站
2022-03-26 14:50:58
...
这篇文章主要介绍了用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发https请求 的详细内容,更多请关注其它相关文章!
上一篇: Git与Github的有什么区别
推荐阅读
-
php curl 获取https请求的2种方法
-
发一个php简单的伪原创程序,配合商城采集用的
-
PHP 用 fsockopen()、fputs() 来请求一个 URL,不要求返回
-
php使用curl获取https请求的方法
-
PHP-Curl模拟HTTPS请求
-
php之curl实现http与https请求的方法
-
Java用HttpClient3发送Get和Post请求(增强)
-
PHP使用file_get_contents或curl请求https的域名内容为空或Http 505错误的问题排查方法
-
PHP通过curl向其它服务器发请求并返回数据
-
php使用curl获取https请求的方法_PHP教程