rfc:rng_extension
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision Next revision Both sides next revision | ||
rfc:rng_extension [2021/09/02 15:06] zeriyoshi 3.0 |
rfc:rng_extension [2021/09/03 14:02] zeriyoshi add more example |
||
---|---|---|---|
Line 54: | Line 54: | ||
* mt_srand() | * mt_srand() | ||
* mt_rand() | * mt_rand() | ||
+ | * random_int() | ||
+ | * random_bytes() | ||
At the same time, the following internal APIs will also be relocated. If you want to use them, you can simply include ext/ | At the same time, the following internal APIs will also be relocated. If you want to use them, you can simply include ext/ | ||
Line 88: | Line 90: | ||
* shuffleArray() | * shuffleArray() | ||
* shuffleString() | * shuffleString() | ||
+ | |||
+ | This class can be used in the following way. | ||
+ | |||
+ | <code php> | ||
+ | // functions | ||
+ | mt_srand(1234); | ||
+ | mt_rand(); // generate random number | ||
+ | mt_rand(1, 10); // generate random number in range | ||
+ | str_shuffle(" | ||
+ | $arr = range(1, 10); | ||
+ | shuffle($arr); | ||
+ | |||
+ | // object | ||
+ | $mt = new Random\NumberGenerator\MT19937(1234); | ||
+ | $mt-> | ||
+ | $random = new Random($mt); | ||
+ | $random-> | ||
+ | $random-> | ||
+ | $random-> | ||
+ | </ | ||
The Random class accepts an instance that inherits from Random\NumberGenerator as a constructor argument. | The Random class accepts an instance that inherits from Random\NumberGenerator as a constructor argument. |
rfc/rng_extension.txt · Last modified: 2022/06/14 00:00 by zeriyoshi