欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-11 17:49:09
复制代码 代码如下: 

复制代码 代码如下:

 <?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;
?>