主题:  关于随机函数!

爱多媒体爱生活

职务:普通成员
等级:2
金币:1.0
发贴:303
#12004/1/3 10:33:20
在VB和ASP里要用随机函数开始都要加一个randomize这样才可以让每次随机都不一样!

在PHP里应该用什么呢??

急!



5DPHP版主

职务:版主
等级:2
金币:10.0
发贴:291
#22004/1/4 16:27:44
rand
(PHP 3, PHP 4 )

rand -- Generate a random value
Description
int rand ( [int min, int max])


If called without the optional min, max arguments rand() returns a pseudo-random value between 0 and RAND_MAX. If you want a random number between 5 and 15 (inclusive), for example, use rand (5, 15).

In older versions of PHP, you had to seed the random number generator before use with srand(). Since 4.2.0 this is no longer necessary.

注: In versions before 3.0.7 the meaning of max was range. To get the same results in these versions the short example should be rand (5, 11) to get a random number between 5 and 15.

See also srand(), getrandmax(), and mt_rand().

建议你去php.net下载一本PHP手册