Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
Synopsis:
$srand(<seed>)
Technical:
This function seeds the random number generator used by $rand().
Practical:
This function is used to help truly randomize the client's random number
generator. In general, a larger seed will produce more unpredictable
results (which is good).
Returns:
empty string
Examples:
$srand($time()) a very large seed
See Also:
rand(6)