PHP读取网页文件内容的实现代码(fopen,curl等)

 2025-01-16  阅读 384  评论 8  点赞 320

摘要:1.fopen实现代码:复制代码 代码如下: 复制代码 代码如下: 2.curl实现代码:复制代码 代码如下: 编码转换函数复制代码 代码如下: $html = file_get_contents("http://s.jb51.net"); $html = iconv( "big5", "utf-8//ignore" , $html); //转化编码方式为utf8 print $html; $htm
1.fopen实现代码:
复制代码 代码如下:

<?php
$handle = fopen ("http://www.example.com/", "rb");
$contents = "";
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
?>

复制代码 代码如下:

<?php
// 对 php 5 及更高版本
$handle = fopen("http://www.example.com/", "rb");
$contents = stream_get_contents($handle);
fclose($handle);
?>

2.curl实现代码:
复制代码 代码如下:

<?php
function _url($date){
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, curlopt_url, "$date");
curl_setopt ($ch, curlopt_returntransfer, 1);
curl_setopt ($ch, curlopt_useragent, "mozilla/4.0 (compatible; msie 6.0; windows nt 5.1; sv1)");
curl_setopt ($ch, curlopt_connecttimeout, $timeout);
$contents = curl_exec($ch);
curl_close($ch);
return $contents;
}
$pageurl="http://www.baidu.com";
$contents=_url($pageurl);
?>

编码转换函数
复制代码 代码如下:

$html = file_get_contents("http://s.jb51.net");
$html = iconv( "big5", "utf-8//ignore" , $html); //转化编码方式为utf8
print $html;
$htm = file("http://s.jb51.net");
$h = "";
foreach($htm as $value)
{
$h.= iconv( "gb2312", "utf-8//ignore" , $value);
}
print_r($h);

另一种打开网页的方法
复制代码 代码如下:

<?php
$opts = array(
'http'=>array(
'method'=>"get",
'header'=>"accept-language: en\r\n" .
"cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
/* sends an http request to www.example.com
with additional headers shown above */
$fp = fopen('http://www.baidu.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>


标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0288秒, 内存占用1.94 MB, 访问数据库31次

冀ICP备19034377号