1

当我尝试解析 google rss 提要时,我收到 Network error: 500 internal server error in chrome and firefox developer tool。下载 rss 提要(使用 curl)的第一部分工作正常。

我在以下位置找到了这个示例:http ://www.joevasquez.info/development/parsing-xml-feeds-with-php-rss-and-atom/#more-63

有人可以指出我做错了什么吗?谢谢你。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
if (function_exists("curl_init")){
    $ch=curl_init();
    //curl_setopt($ch,CURLOPT_URL,'http://www.joevasquez.info/feed/');
    curl_setopt($ch,CURLOPT_URL, 'http://news.google.com/news?hl=en&topic=t&output=rss');
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    //curl_setopt($ch,CURLOPT_HEADER,0);

    $data=curl_exec($ch);


    curl_close($ch);
    //print($data);

    $doc=new SimpleXmlElement($data,LIBXML_NOCDATA);

    if (isset($doc->channel)) parseRSS($doc);

    function parseRSS($xml){
        $cnt=count($xml->channel->item);
        for ($i=0;$i<$cnt;$i++){
            $url=$xml->channel->item[$i]->link;
            $title=$xml->channel->item[$i]->title;
            $desc=$xml->channel->item[$i]->description;

        echo '<a href="'.$url.'">'.$title.'</a>'.$desc.'<br>';
    }
}
?>
</body>
</html>
4

2 回答 2

3

您忘记在 for 循环后关闭括号。

for ($i=0;$i<$cnt;$i++){
     $url=$xml->channel->item[$i]->link;
     $title=$xml->channel->item[$i]->title;
     $desc=$xml->channel->item[$i]->description;
}
于 2012-07-12T08:58:13.837 回答
1

好的,我让它工作了。日志中的错误:

Fatal error:  Call to undefined function  parserss()in /home1/aquinto1/public_html/belibook.com/curl/curl3.php on line 17

我在调用函数 parserRSS 之前剪切并粘贴了它,现在它工作正常。

以下是我的修改:

$doc=new SimpleXmlElement($data,LIBXML_NOCDATA);

function parseRSS($xml){
    $cnt=count($xml->channel->item);
    for ($i=0;$i<$cnt;$i++){
        $url=$xml->channel->item[$i]->link;
        $title=$xml->channel->item[$i]->title;
        $desc=$xml->channel->item[$i]->description;
        echo '<a href="'.$url.'">'.$title.'</a>'.$desc.'<br>';
    }
}

if (isset($doc->channel)) parseRSS($doc);

谢谢你们俩!

于 2012-07-13T05:57:44.500 回答