Home  >  Article  >  Backend Development  >  固定随机数的算法

固定随机数的算法

WBOY
WBOYOriginal
2016-06-13 11:15:491169browse

求一个固定随机数的算法
有木有这样的函数 rand(min,max,randseed) 能根据随机指派的randseed参数,产生固定不变的min与max之间的数。
谁知道算法,请指点一下

随机数 算法
------解决方案--------------------
没有!
但 rand 可用 srand 设置种子
比如
srand(10);
echo rand(0, 10);

无论运行多少次,都只输出 5
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP用CURL仿冒IP和来源Next article:树形展示分类