0

这是我目前的 PHP 文件:

<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<rss version="2.0">
<channel>
  <title>My Website</title>
  <link>http://www.mywebsite.com</link>
  <description>The Title of My Website</description>
  <pubDate>Tue, 15 Apr 2008 18:00:00 +0000</pubDate>

  <item>
    <title>Website Directory - Page NUMBER</title>
    <pubDate><?echo date('Y/m/d H:i:s');?></pubDate>
    <link>http://www.mywebsite.com/directory/NUMBER</link>
    <description>New update to page NUMBER in the Website Directory.</description>
  </item>

</channel>
</rss>

那里正确地显示了 RSS 提要中的一个条目。但是,我需要它显示 30 个条目,每个条目在项目中显示 NUMBER 的三个位置输入一个随机数。

每个 RSS 项目应在 NUMBER 三个位置输入 1 到 2779503 之间的不同数字。我知道 PHP 有http://php.net/manual/en/function.rand.php但我不知道该怎么做是每次加载提要时让它循环 30 个随机数......

4

1 回答 1

1
<?php
    foreach( range( 1, 30 ) as $i ):
        $number = mt_rand( 1, 2779503 );
?>
<item>
    <title>Website Directory - Page <?php echo $number; ?></title>
    <pubDate><?echo date('Y/m/d H:i:s');?></pubDate>
    <link>http://www.mywebsite.com/directory/<?php echo $number; ?></link>
    <description>New update to page <?php echo $number; ?> in the Website Directory.</description>
</item>
<?php endforeach; ?>
于 2012-11-25T01:56:29.583 回答