I know how to generate a random number in PHP but lets say I want a random number between 1-10 but I want more 3,4,5's then 8,9,10's. How is this possible? I would post what I have tried but honestly, I don't even know where to start.
|
|
There's a pretty good tutorial for you. Basically:
|
||||
|
|
|
The naive hack for this would be to build a list or array like 1, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 7, 7, 7, 8, 8, 9, 9, 10, 10 And then select randomly from that. |
||||||
|
|
|
For an efficient random number skewed consistently towards one end of the scale:
eg. in PHP (untested):
|
|||
|
|
