dputlf5431 2019-06-12 12:15
浏览 85
已采纳

在PHP中提交或刷新页面后如何不洗牌

I have an array like this:

$aTotalQuestions = range(1, 10);
shuffle($aTotalQuestions);

This is what I am doing with my array:

echo "<table>";
foreach($aTotalQuestions as $total) {
    echo "<tr><td>$total</td></tr>";
}
echo "</table>";

output for example:

4
5
8
6
1
2
10
9
3
7

Every time when I press a submit button or refresh my page, it is shuffling my array again. I don't want to shuffle my array after another page refresh, but I dont know how to do that.

  • 写回答

1条回答 默认 最新

  • doutiaosu2310 2019-06-12 12:19
    关注

    You need to save shuffle array, eg. in session.

    session_start();
    if (!isset($_SESSION['shuffled'])) {
        $_SESSION['shuffled'] = range(1, 10);
        shuffle($_SESSION['shuffled']);
    }
    
    echo "<table>";
    foreach($_SESSION['shuffled'] as $total) {
        echo "<tr><td>$total</td></tr>";
    }
    echo "</table>";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?