0

所以我目前正在获取这个 RSS 提要http://www.footballwebpages.co.uk/league.xml?comp=1,但是不支持根元素,所以我需要<rss>在 XML 的底部/顶部添加一个标签文件。我该怎么做呢?我已经设法在这里打印出来了...

<?php
    header("Content-type: application/xhtml+xml");  
    $html = file_get_contents('http://www.footballwebpages.co.uk/league.xml?comp=1');
        echo $html;
?>

<rss>除了底部和顶部的标签之外,它给了我所有正确的东西。

4

1 回答 1

0

不确定这是否是最好的方法,但用<leagueTable>?

header("Content-type: application/xhtml+xml");  
$html = explode("<leagueTable>", file_get_contents('http://www.footballwebpages.co.uk/league.xml?comp=1'));
$html = "<?xml version='1.0' encoding='UTF-8' ?>
<rss>
<leagueTable>{$html[1]}
</rss>";
echo $html;
于 2013-11-09T06:02:47.303 回答