欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-18 23:36:25
...
一、推荐方法 CURL获取

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

(.*)/i",$data, $title);<br>echo $title[1];<br>?> <p>二、使用file()函数</p> <p><?php <BR>$lines_array = file('http://www.php.net/');<br>$lines_string = implode('', $lines_array); <br>$pos = strpos($lines_string,'utf-8');<br>if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}<br>eregi("</p> <title>(.*)", $lines_string, $title);
echo $title[1];
?>

三、使用file_get_contents

$content=file_get_contents("http://www.php.net/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk","utf-8",$content);}
$postb=strpos($content,'

')+7;<br>$poste=strpos($content,'');
$length=$poste-$postb;
echo substr($content,$postb,$length);
?>