本文为大家提供的是PHP获取网页标题的3种实现方法及代码实例.分别使用CURL、file()函数、file_get_contents实现,需要的朋友可以参考下 一、推荐方法 CURL获取 <?php $c = curl_init(); $url = 'www
本文为大家提供的是PHP获取网页标题的3种实现方法及代码实例.分别使用CURL、file()函数、file_get_contents实现,需要的朋友可以参考下
一、推荐方法 CURL获取
<?php
$c = curl_init();
$url = 'www.xxx.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()函数
<?php
$lines_array = file('http://www.xxx.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.xxx.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);
?>
标签: PHP 获取 网页 题的 3种 实现 方法 代码 实例
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!