1

我正在尝试显示来自此 xml 提要的值: http ://www.scorespro.com/rss/live-soccer.xml

在我的 PHP 代码中,我有以下循环,但它没有在我的页面上显示结果:

<?php
    $xml = simplexml_load_file("http://www.scorespro.com/rss/live-soccer.xml");

    echo $xml->getName() . "<br>";

    foreach($xml->children() as $item)
    {
        echo $item->getName() . ": " . $item->name . "<br>";
    }
?>

由于某种原因,它只显示:

rss
channel: 

我对 XML 的工作方式相当陌生,因此非常感谢任何帮助。

4

2 回答 2

2

您可以从中获取实际数据,$xml->channel->item如下所示

$items = $xml->channel->item;    
foreach($items as $item) {
  $title = $item->title;
  $link = $item->link;
  $pubDate = $item->pubDate;
  $description = $item->description;
}

演示。

于 2013-05-09T13:49:06.043 回答
-1

你可以使用下面的代码

$dom = new DOMDocument;
$dom->loadXML($url);
if (!$dom) {
    echo 'Error while parsing the document';
    exit;
}
$xml = simplexml_import_dom($dom);
$data = $xml->channel->item;
于 2013-05-09T13:46:00.187 回答