RSSフィード内の最新の3つのニュース記事を解析しようとしています。その後、説明の「プレビュー」を作成し、タイトルとプレビューを表示する必要があります。最初の記事を3回表示してもらいました...
<?php
$doc = new DOMDocument();
$doc->load('http://info.arkmediainc.com/CMS/UI/Modules/BizBlogger/rss.aspx?tabid=575593&moduleid=1167800&maxcount=25&t=16c4c7582db87da06664437e98a74210');
$arrFeeds = array();
foreach ($doc->getElementsByTagName('item') as $node) {
$itemRSS = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
'link' => $node->getElementsByTagName('link')->item(0)->nodeValue,
'description' => $node->getElementsByTagName('description')->item(0)->nodeValue,
'pubDate' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue
);
array_push($arrFeeds, $itemRSS);
}
$itemRSS = array_slice($itemRSS, 0, 3); // This cuts it down to 3 articles.
for ($i = 0; $i < 3; $i++)
{
$title = $itemRSS['title'];
$description = substr($itemRSS['description'],0,100);
echo("<h2>".$title."</h2>");
echo("<br />".$description."<br />");
}
?>
また、foreachループを使用して「機能」(最初の3つを表示)しました...
/*
foreach($itemRSS as $ira)
{
$title = $itemRSS['title'];
$description = substr($itemRSS['description'],0,100);
echo("<h2>".$title."</h2>");
echo("<br />".$description."<br />");
}
*/
私にはあまり意味がないので、コメントアウトされています。
助けてください!ありがとう!