抱歉打扰了这个人。虽然我接受我是一个完整的新手,但我到处寻找答案却没有成功。无论如何在PHP中生成随机数1-100然后你可以“修复”,即保持它不变,以便它可以在会话中以不同的方式使用。我在一个应用程序中有一百张照片,我希望通过随机选择一个然后显示下一个20来显示。当我遍历代码时,mt_rand函数重新生成另一个数字而另一个依此类推,并且每时候它都意味着所显示的照片是重复的......即它不知道它之前在该会话中显示的随机数。似乎无法在$ _SESSION超全局中修复它。再次道歉......不知道你是否就这些事情提供了帮助。
答案 0 :(得分:0)
试试这个:
session_start(); // start a session
if(!isset($_SESSION['startNum']))
$_SESSION['startNum'] = rand(1,100); // if not set define a new number between 1 and 100
for($i = 0; $i < 20; $i++)
echo '<img id="'.$_SESSION['startNum']+$i.'">';
答案 1 :(得分:0)
您可能想要$_SESSION
超全局变量:
<?php
session_start();
if(!isset($_SESSION['index']))
$_SESSION['index'] = rand(1,100);
#It won't generate a new number if the variable is already set.
#You can then loop
$max = $_SESSION['index']+20;
while($_SESSION['index']<$max)
{
/* Here we echo the necessary code for each image we loop to */
echo "<img src=".$myImgArray[$_SESSION['index']]['src']."/>";
/* We increment the index until it reaches its original value + 20 */
$_SESSION['index'] +=1;
}
?>