使用Curl(SSL支持)获取网站
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Curl(SSL支持)获取网站相关的知识,希望对你有一定的参考价值。
This example will CURL a forum and echo it's contents using SSL support.
<?php function get_data($url) { $timeout = 5; return $data; } $returned_content = get_data('http://faucetlove.com'); // Curl a bitcoin forum echo $returned_content; ?>
以上是关于使用Curl(SSL支持)获取网站的主要内容,如果未能解决你的问题,请参考以下文章
php用curl时,HTTP链接正常,HTTPS时,获取不到数据