手机
当前位置:查字典教程网 >编程开发 >php教程 >PHP获取网页标题的3种实现方法代码实例
PHP获取网页标题的3种实现方法代码实例
摘要:一、推荐方法CURL获取二、使用file()函数三、使用file_get_contents

一、推荐方法 CURL获取

<?php

$c = curl_init();

$url = 'www.jb51.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.jb51.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.jb51.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种实现方法代码实例】相关文章:

PHP中的traits简单使用实例

PHP获取文件行数的方法

PHP5 安装方法

PHP中的魔术方法总结和使用实例

PHP嵌套输出缓冲代码实例

PHP file_get_contents函数读取远程数据超时的解决方法

PHP获取数组的键与值方法小结

php实现递归抓取网页类实例

PHP Hash算法:Times33算法代码实例

PHP滚动日志的代码实现

精品推荐
分类导航