欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP獲取網(wǎng)頁標題的3種實現(xiàn)方法代碼實例

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

一、推薦方法 CURL獲取

<?php
$c = curl_init();
$url = 'www.dbjr.com.cn';
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.dbjr.com.cn/');
$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.dbjr.com.cn/");
$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)文章

最新評論