Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PHP 中有一个包含 1000 多个键的数组,我想对其进行随机化。我目前正在使用洗牌来做到这一点,但是我希望洗牌的顺序每次都相同。因此,每次运行脚本时,随机但总是以相同的随机顺序。
这是一个客户请求:)。随机化,但每次都保持相同的随机顺序。
先调用srand(int seed),用常量。例如srand(123)。
srand(int seed)
srand(123)