最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP獲取網(wǎng)頁(yè)標(biāo)題的3種實(shí)現(xiàn)方法代碼實(shí)例

 更新時(shí)間:2014年04月11日 11:56:24   作者:  
這篇文章主要介紹了PHP獲取網(wǎng)頁(yè)標(biāo)題的3種實(shí)現(xiàn)方法,分別使用CURL、file()函數(shù)、file_get_contents實(shí)現(xiàn),需要的朋友可以參考下

一、推薦方法 CURL獲取

<?php
$c = curl_init();
$url = 'www.fzitv.net';
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($c);
curl_close($c);
$pos = strpos($data,'utf-8');
if($pos===false){$data = iconv("gbk","utf-8",$data);}
preg_match("/<title>(.*)<\/title>/i",$data, $title);
echo $title[1];
?>

二、使用file()函數(shù)

<?php
$lines_array = file('http://www.fzitv.net/');
$lines_string = implode('', $lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}
eregi("<title>(.*)</title>", $lines_string, $title);
echo $title[1];
?>

三、使用file_get_contents

<?php
$content=file_get_contents("http://www.fzitv.net/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk","utf-8",$content);}
$postb=strpos($content,'<title>')+7;
$poste=strpos($content,'</title>');
$length=$poste-$postb;
echo substr($content,$postb,$length);
?>

相關(guān)文章

最新評(píng)論

新巴尔虎左旗| 合肥市| 泽库县| 广饶县| 宜城市| 农安县| 稷山县| 革吉县| 桂东县| 澎湖县| 上虞市| 乐业县| 永和县| 阳泉市| 泸水县| 申扎县| 和政县| 关岭| 荥阳市| 措勤县| 澳门| 平邑县| 宁蒗| 安宁市| 辉南县| 鸡泽县| 安达市| 正镶白旗| 县级市| 柘荣县| 疏附县| 丽江市| 车险| 施秉县| 禹城市| 阳东县| 长乐市| 闽清县| 广德县| 靖宇县| 呼伦贝尔市|