Tagged Questions

-1
votes
2answers
121 views

PHP Random Numbers

i need to print out numbers 1-100 in a random order. the print statement should be: echo 'h{'.$num.'}'; what is the shortest code to do this?
4
votes
12answers
486 views

In PHP, how do I generate a big pseudo-random number?

I'm looking for a way to generate a big random number with PHP, something like: mt_rand($lower, $upper); The closer I've seen is gmp_random() however it doesn't allow me to specify the lower and …
0
votes
2answers
171 views

Why would rand() return a negative value when min and max values are positive?

Hi, I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output. Here's my debug code: …
3
votes
4answers
166 views

How do you generate cryptographically secure random numbers with PHP?

We need to generate a cryptographically random string to use as an authentication token, which will be tied to session data in the database. We are using PHP, which doesn't appear to have a suitable …
5
votes
7answers
266 views

PHP - Is rand(1,1000) = 1000 as probable as rand(1,1000) = rand(1,1000) ?

Is this how PHP implemented random number generating? Say I want to calculate a yes or a no. Everytime I have a certain probability percentage (say: 0,05% for this example). I do: $possibilities = …
1
vote
2answers
96 views

replace rand() with openssl_random_pseudo_bytes()

I need a replacement for PHP's rand() function that uses a cryptographically strong random number generator. The openssl_random_pseudo_bytes() function gets you access to the strong random number …
0
votes
2answers
65 views

Generating a random seed in PHP for consumption by Flash

I'm working on a project with remote Flash developers, and they have requested that when my PHP application sets up the HTML to load their Flash object, I pass in a seed that they can use to generate …
0
votes
9answers
454 views

PHP: Best random numbers

Hello! I heard that PHP's rand() function doesn't give good random numbers. So I started to use mt_rand() which is said to give better results. But how good are these results? Are there any methods …
6
votes
8answers
2k views

Generating unique codes in PHP/MySQL?

I'm working with a client that needs to generate millions of the alphanumeric codes used in magazine scratch-off cards, bottlecap prizes, and so on. They have to be short enough to print on a cap, …
4
votes
8answers
727 views

Better Random Generating PHP

I know that just using rand() is predictable, if you know what your doing, and have access to the server. I have a project that is HIGHLY dependent on choosing a random that is as unpredictable as …