国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PHP > 正文

PHP讀取網(wǎng)頁文件內(nèi)容的實現(xiàn)代碼(fopen,curl等)

2024-05-04 23:18:04
字體:
供稿:網(wǎng)友
1.fopen實現(xiàn)代碼:

復(fù)制代碼 代碼如下:


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


復(fù)制代碼 代碼如下:


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


2.curl實現(xiàn)代碼:

復(fù)制代碼 代碼如下:


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


編碼轉(zhuǎn)換函數(shù)

復(fù)制代碼 代碼如下:


$html = file_get_contents("http://s.vevb.com");
$html = iconv( "Big5", "UTF-8//IGNORE" , $html); //轉(zhuǎn)化編碼方式為UTF8
print $html;
$htm = file("http://s.vevb.com");
$h = "";
foreach($htm as $value)
{
$h.= iconv( "GB2312", "utf-8//IGNORE" , $value);
}
print_r($h);


另一種打開網(wǎng)頁的方法

復(fù)制代碼 代碼如下:


<?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
with additional headers shown above */
$fp = fopen('http://www.baidu.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 都江堰市| 鸡泽县| 太康县| 德令哈市| 五华县| 乌拉特前旗| 波密县| 沾化县| 两当县| 太白县| 屏边| 施甸县| 福州市| 淳安县| 什邡市| 清河县| 大同县| 丹凤县| 乡宁县| 嘉黎县| 正阳县| 泗阳县| 宜君县| 杂多县| 宜宾市| 贵溪市| 古丈县| 宝坻区| 称多县| 江陵县| 枣庄市| 肇庆市| 阆中市| 灵山县| 突泉县| 萨迦县| 临安市| 聂拉木县| 武宁县| 松阳县| 河津市|