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.
我想生成一个随机数并能够在整个程序中使用该数字。目前我正在使用 $random = rand($min, $max); 但每次我调用变量 $random 它都会改变。有没有办法让它保持不变。
您所要做的就是$random像这样使用:
$random
$random = rand(0,10000); echo "$random\n"; echo "$random\n"; //same number
如果你有$random里面的一个函数,那么$random每次都会改变。