這裏有我的代碼:如果裏面的ForEach
<?php
$url = "http://feeds.hipertextual.com/alt1040";
$rss = simplexml_load_file($url);
if($rss) {
$items = $rss->channel->item;
foreach($items as $item) {
$title = $item -> title;
$link = $item -> link;
$description = $item -> description;
$replace = preg_replace("/<img[^>]+\>/i", "", $description);
echo utf8_decode("<h3><a href=$link>$title</a></h3>");
echo utf8_decode("<p>$replace</p>");
}
}
?>
我從那個URL的RSS和我解析它,使圖像不會出現。直到這裏OK。 但現在,我只想顯示RSS Feed的第一條新聞,而不是所有的新聞。
如果我做了一個計數,它告訴有25個新聞項目。
$count = count ($items);
echo $count; //25 news...
我該怎麼做只顯示第一條新聞?
OP只搜索1項。 –
misunderstanded,編輯答案。 –
對我來說,最好的答案是,我可以選擇我想要展示的新聞。非常感謝你! – seRgiOOOOOO