php获取网页代码怎么写,PHP获取网页标题的3种实现方法代码实例
日期: 2021-04-05 分类: 个人收藏 481次阅读
这篇文章主要介绍了PHP获取网页标题的3种实现方法,分别使用CURL、file()函数、file_get_contents实现,需要的朋友可以参考下
一、推荐方法 CURL获取
$c = curl_init();
$url = 'www.45it.com';
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("/
(.*)/i",$data, $title);echo $title[1];
?>
二、使用file()函数
$lines_array = file('http://www.45it.com/');
$lines_string = implode('', $lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}
eregi("
(.*)", $lines_string, $title);echo $title[1];
?>
三、使用file_get_contents
$content=file_get_contents("http://www.45it.net/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk","utf-8",$content);}
$postb=strpos($content,'
')+7;$poste=strpos($content,'
');$length=$poste-$postb;
echo substr($content,$postb,$length);
?>
除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog
标签:php获取网页代码怎么写
精华推荐