php中能够获取到某一网站内容的方法
方法一:file_get_contents 函数
example:
<?php $url = "http://www.cnblogs.com"; $contents = file_get_contents($url); echo $contents; ?>
出现乱码需要在输出前加一句:
$getcontent = iconv("gb2312", "utf-8",$contents);
方法二:fopen
example:
<?php $handle = fopen ("http://www.cnblogs.com", "rb"); $contents = ""; do { $data = fread($handle, 1024); if (strlen($data) == 0) { break; } $contents .= $data; } while(true); fclose ($handle); echo $contents; ?>
但是方法一和方法二需要服务器中php的配置开启了“allow_url_fopen = On”,才允许远端访问
方法三:curl(这种方法比较好用。)
1
2
3
4
5
6
7
8
9
10
11
12
13
14 |
<?php $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 ; ?> |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。