加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

PHP获取网页标题的3种实现方法代码实例

发布时间:2020-05-24 09:54:01 所属栏目:PHP 来源:互联网
导读:这篇文章主要介绍了PHP获取网页标题的3种实现方法,分别使用CURL、file()函数、file_get_contents实现,需要的朋友可以参考下

一、推荐方法 CURL获取

$c = curl_init();
$url = 'www.jb51.cc';
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('//www.jb51.cc/');
$lines_string = implode('',$lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk",$lines_string);}
eregi("(.*)",$lines_string,$title);
echo $title[1];
?>

三、使用file_get_contents

$content=file_get_contents("//www.jb51.cc/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk",$content);}
$postb=strpos($content,'')+7;<BR>$poste=strpos($content,'');
$length=$poste-$postb;
echo substr($content,$postb,$length);
?>

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读