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

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

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

  2021-03-19 我要评论
想了解PHP获取网页标题的3种实现方法代码实例的相关内容吗,在本文为您仔细讲解PHP获取网页标题的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:PHP,获取网页标题,CURL,file函数,file_get_contents函数,下面大家一起来学习吧。

一、推荐方法 CURL获取

<?php
$c = curl_init();
$url = 'www.qb5200.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('//www.qb5200.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("//www.qb5200.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);
?>

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们