In PHP, I need to find a way to generate random integers between 1 and 46938003261
The rand function seems to be unable to generate numbers larger than 9 digits long, which is a problem for me given my 11 digit long max number.
rand (1 , 46938003261)
I realize this is a limitation of PHP on 32 bit systems, and I can verify that I have had the same issue using mt-rand instead of rand.
How can I generate a random integer between 0 and 46938003261 with PHP?
Thanks!