0

我正在尝试解析 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 />");
}
*/

它被注释掉了,因为它对我来说意义不大。

请帮忙!谢谢!

4

2 回答 2

0

当您使用 foreach 时,它接受两个(在您的情况下,但可以有 3 个)可能的“参数”。要遍历的数组和存储每个元素的变量。这个例子:

$numbers = array('one', 'two');
foreach($numbers as $number) {
    echo "\nNew Iteration\n";
    var_dump($numbers);
    var_dump($number);
}

将输出

New Iteration
array(2) {
  [0] => string(3) "one"
  [1] => string(3) "two"
}
string(3) "one"

New Iteration
array(2) {
  [0] => string(3) "one"
  [1] => string(3) "two"
}
string(3) "two"

迭代器从不修改数组。它只是设置$number为数组中每个元素的值,直到没有更多元素为止。同样的原理也适用于for循环。下面的代码将产生与上面相同的结果

$numbers = array('one', 'two');
for($i = 0; $i < count($numbers); $i++) {
    echo "\nNew Iteration\n";
    var_dump($numbers);
    var_dump($numbers[$i]);
}

使用多维数组时也是如此。无论您选择for还是foreach,您都必须访问数组中的每个元素。所以你的代码看起来像这样:

foreach($rssItems as $rssItem)
{
    $title = $rssItem['title'];
    $description = substr($rssItem['description'],0,100);
    echo("<h2>".$title."</h2>");
    echo("<br />".$description."<br />");
}

我选择使用 foreach 是因为我发现让 PHP 处理迭代要容易得多。另外,该foreach行用英语正确阅读。对于$rssItems别名中的每个项目,它为$rssItem. 注意复数和单数的区别。为每个foreach项目运行它的块,$rssItems并且对于每次迭代,变量$rssItem将包含循环打开时的当前值$rssItems

想要更多使用理由foreach?如果您也需要使用键,foreach 将为您提供散列(数组)中每个元素的键和值。

$words = array('hola' => 'hello', 'adios' => 'goodbye', 'gracias' => 'thank you');
foreach($words as $spanishWord => $englishTranslation) {
    echo $spanishWord . " in English is " . $englishTranslation . "\n";
}

Foreach 还允许您使用SPL编写扩展或实现迭代器的类。包含集合的类可以作为一个类发挥作用,但可以迭代。例如:

class PhotoAlbum implements IteratorAggregate {
    private $pictures = array();

    public function __construct($pictures) {
        $this->pictures = $pictures;
    }

    public function addPicture($picture) {
        $this->pictures[] = $picture;
    }

    public function share($friend) {
        // etc..
    }

    public function getIterator() {
        return new ArrayIterator($this->pictures);
    }
}

$album = new PhotoAlbum($picturesArrayFromDB);
foreach($album as $picture) {
    echo $picture;
}
于 2012-07-17T22:03:43.480 回答
0

您已将 rss 项推送到 中$arrFeeds,现在您可以通过索引访问这些项,例如$arrFeeds[0]将是第一个 rss 项。

for ($i = 0; $i < 3; $i++) 
{
  $title = $arrFeeds[$i]['title'];
  $description = substr($arrFeeds[$i]['description'],0,100);
  echo("<h2>".$title."</h2>");
  echo("<br />".$description."<br />");
}

但以下更好: with foreach

$theFirstThreeArticles = array_slice($arrFeeds, 0, 3); // This cuts it down to 3 articles.

foreach($theFirstThreeArticles as $ira)
{
  $title = $ira['title'];
  $description = substr($ira['description'],0,100);
  echo("<h2>".$title."</h2>");
  echo("<br />".$description."<br />");
}
于 2012-07-17T21:48:16.850 回答