PHP教程:php抓取htt的内容_PHP应用_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

PHP教程:php抓取htt的内容

作者:黑客防线网安PHP维护基地 来源:黑客防线网安PHP维护基地 浏览次数:0

本篇关键词:内容教程false程序
黑客防线网安网讯:直接用file_get_contents,会报错; 程序代码$url = (https://xxx.com");file_get_contents($url);错误: 程序代码Warning: file_get_contents(https://xxx.com) [function.file-get-conten...

直接用file_get_contents会报错;

 程序代码$url = (https://xxx.com");
file_get_contents($url);

错误:
 程序代码Warning: file_get_contents(https://xxx.com) [function.file-get-contents]: failed to open stream: No such file or directory in D:wampwwwgrabber_clientindex.php on line 3

用curl的方式是可以的:
 程序代码$url = (https://xxx.com);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($ch);
print_r($result);
?>

重点是以下两句:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-13802-1.html
网站维护教程更新时间:2012-03-30 04:57:14  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer