从多个URL中提取标题和描述

时间:2013-05-19 21:17:02

标签: php url title metatag

我有一个链接列表,这些链接都是文章。我正在尝试使用PHP一次性从所有这些中提取标题和描述。我还希望文章标题是URL的超链接,以及斜体下面显示的描述。

我的问题是:当我为一个链接执行此操作时,它会起作用,但是当我尝试多个链接时,或者即使我复制代码并手动粘贴每个链接,它也不起作用。下面是我的代码,我的代码适用于一个链接。有什么想法吗?

    <html>
    <a href="http://bit.ly/18EFx87">
    <b><?php

    function getTitle($Url){
        $str = file_get_contents($Url);
        if(strlen($str)>0){
            preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
            return $title[1];
        }
    }
    echo getTitle("http://bit.ly/18EFx87");

    ?></b><br>
    </a>
    <i><?php
    $tags = get_meta_tags('http://bit.ly/18EFx87');
    echo $tags['description'];
    ?></i>
    </html>

1 个答案:

答案 0 :(得分:0)

我认为你的意思是多个网址,那么这样的东西就可以了。 :

<html>

<?php
function getTitle($url){
    @$str = file_get_contents($url); // suppressing the warning
    if(strlen($str)>0){
        preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
        return $title[1];
    } else {
        return false;
    }
}

$urls = array('http://bit.ly/18EFx87', 'url2');
foreach($urls as $url)
{
    $title = getTitle($url);
    if($title === false)
    {
        continue;
    }
    echo '<a href="' . $url . '"><b>';
    echo $title;

    echo '</b></a><br><i>';

    $tags = get_meta_tags($url);
    echo $tags['description'] . '</i>';
 } 
 ?>
</html>