当前位置:首页 > PHP教程 > PHP高级教程

file_get_contents获取不到网页内容的解决方法

复制代码 代码如下:

 <?php
$url = "http://jb51.net/index.html";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, curlopt_url, $url);
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_connecttimeout, $timeout);
//在需要用户检测的网页里需要增加下面两行
//curl_setopt($ch, curlopt_httpauth, curlauth_any);
//curl_setopt($ch, curlopt_userpwd, us_name.":".us_pwd);
$contents = curl_exec($ch);
curl_close($ch);
echo $contents;
?> 



【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!