所以我试图在我的首页 index.php 上显示来自文件 feed.php(它的 rss)的提要。但是当我将它加载到index.php.... 但是,feed.php 本身似乎没有任何问题
Index.php 我有以下代码
$feed = simplexml_load_file('feed.php');
$counter = 0;
$amount = 5;
foreach($feed->channel->item as $item){
while ($counter<$amount) {
echo utf8_decode("<a href='{$item->link}'>{$item->title}</a><br>");
echo utf8_decode("<i>{$item->pubDate} </i><br>");
echo utf8_decode("{$item->description} <br><br>");
break;
}
$counter ++;
}
这在 feed.php
<rss version="2.0">
<channel>
<title>This is the title</title>
<link>http://www.someweirdurl.com</link>
<description>Just a testpage</description>
<?php
require_once 'dbconn.php';
$sql = "SELECT * FROM feeds";
$obj_result = $obj_con->query($sql);
while ($row = $obj_result->fetch_object()) {
?>
<item>
<title><?php echo $row->artikel_title; ?></title>
<link><?php echo $row->artikel_url; ?></link>
<description><?php echo $row->artikel_tekst; ?></description>
<author><?php echo $row->artikel_forfatter; ?></author>
<category><?php echo $row->artikel_kategori; ?></category>
<subDate>Fri, 05 Jul 2013 15:29:07 +0200</subDate>
</item>
<?php
}
?>
</channel>
</rss>
我试图在 index.php 上打印它,它给了我这样的输出
[author] => SimpleXMLElement Object
就像它们是空的..虽然它得到了 subDate (作为唯一的)
[subDate] => Fri, 05 Jul 2013 15:29:07 +0200
可能是因为 subDate 是我没有从数据库中取出的唯一一个.. 那么我必须做些什么才能使它与我的数据库中的数据一起工作..?