PHP获取网页标题的3种实现方法代码实例
发布:smiling 来源: PHP粉丝网 添加日期:2020-11-09 11:43:48 浏览: 评论:0
这篇文章主要介绍了PHP获取网页标题的3种实现方法,分别使用CURL、file()函数、file_get_contents实现,需要的朋友可以参考下。
一、推荐方法 CURL获取
- <?php
- $c = curl_init();
- $url = 'www.phpfensi.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("/<title>(.*)<\/title>/i",$data, $title);
- echo $title[1];
- ?>
二、使用file()函数
- <?php
- $lines_array = file('https://www.phpfensi.com/');
- $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("https://www.phpfensi.com/");
- $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);
- ?>
Tags: PHP获取网页标题
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)