我如何限制每页php中显示的文章数量(从RSS中检索)? (例如每页10篇文章)

时间:2015-04-24 22:55:04

标签: javascript php html dom rss

这是代码: 我从RSS中检索数据,然后在php页面中显示它们。 这些数据是包含标题,日期,描述的项目(文章)......现在我想每页只显示10篇文章。 请问我该怎么做。 谢谢

 <?php 


    $fichier = 'http://korben.info/feed';
    $dom = new DOMDocument();
    $slashNS = "http://purl.org/rss/1.0/modules/slash/";


    if (!$dom->load($fichier)) {
        die('Impossible to load the XML');
    }

    $itemList = $dom->getElementsByTagName('item');


    foreach ($itemList as $item) {
        $titre = $item->getElementsByTagName('title');
        $date = $item->getElementsByTagName('pubDate');

            if ($titre->length > 0) {
                 echo $titre->item(0)->nodeValue;
              } else {
                 echo '(sans titre)';
        }

         echo date (" d/m/Y - H:i", strtotime($date->item(0)->nodeValue))."\t";
             echo '<br />' . 'Nmber of comments : ' . $item->getElementsByTagNameNS($slashNS, 'comments')->item(0)->nodeValue;
            echo '<br />'."\n";

            $desc = $item->getElementsByTagName('description');
            if ($desc->length > 0) {
             echo ' '.$desc->item(0)->nodeValue."\n";
            }

            $lien = $item->getElementsByTagName('link');
            if ($lien->length >0) {
                echo ' <a href="'.$lien->item(0)->nodeValue.'">Article complet</a>';
         }


         echo '<br/>'."\n".'<br/>'."\n".'<br/>'."\n";   

    }
    ?>

1 个答案:

答案 0 :(得分:1)

当计数器达到10时,你可以做的就是break foreach循环。

$i = 0;
foreach ($itemList as $item) {
    $i++;
    // ...
    if($i>9){ break; }
}

或者,重构为for()循环,并用类似于上面的if()语句包围所有代码。