active questions tagged random-number-generator+php - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:09:09Z http://stackoverflow.com/feeds/tag/random-number-generator+php http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1641371/php-random-numbers -1 PHP Random Numbers Brendan Berman 2009-10-29T02:55:43Z 2009-10-29T04:08:54Z <p>i need to print out numbers 1-100 in a random order. the print statement should be:</p> <p>echo 'h{'.$num.'}';</p> <p>what is the shortest code to do this?</p> http://stackoverflow.com/questions/1587799/why-would-rand-return-a-negative-value-when-min-and-max-values-are-positive 0 Why would rand() return a negative value when min and max values are positive? Toytown Mafia 2009-10-19T09:46:49Z 2009-10-19T10:27:28Z <p>Hi,</p> <p>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.</p> <p>Here's my debug code:</p> <pre><code>$debt = rand($this-&gt;gdp * 0.02, $this-&gt;gdp * 0.17); echo "&lt;p&gt;GDP: ".$this-&gt;gdp." rand(".$this-&gt;gdp * 0.02." , ".$this-&gt;gdp * 0.17.") = &lt;strong&gt;".$debt."&lt;/strong&gt;&lt;/p&gt;"; </code></pre> <p>Here's an example output:</p> <pre><code>GDP: 219254674605 rand(4385093492.1 , 37273294682.85) = 75276999 GDP: 345015694865 rand(6900313897.3 , 58652668127.05) = -1636353016 GDP: 90445390920 rand(1808907818.4 , 15375716456.4) = -165604705 GDP: 3412849650 rand(68256993 , 580184440.5) = 347516196 GDP: 2939111315 rand(58782226.3 , 499648923.55) = 119181875 GDP: 26369065 rand(527381.3 , 4482741.05) = 3632416 GDP: 215838135 rand(4316762.7 , 36692482.95) = 28784811 GDP: 511763530 rand(10235270.6 , 86999800.1) = 39954394 GDP: 42416245 rand(848324.9 , 7210761.65) = 3974882 GDP: 75090235 rand(1501804.7 , 12765339.95) = 5201966 </code></pre> <p>So why would a <code>rand()</code> of two positive numbers give a negative return?</p> <p>Any help would be much appreciated!</p> http://stackoverflow.com/questions/1550947/how-do-you-generate-cryptographically-secure-random-numbers-with-php 3 How do you generate cryptographically secure random numbers with PHP? Travis 2009-10-11T15:23:38Z 2009-10-11T15:36:03Z <p>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 random number generator built-in. How can we generate a cryptographically secure random string of N length using php?</p> <p>Also note, due to the nature of our application, shell_exec is off the table.</p> http://stackoverflow.com/questions/1479823/in-php-how-do-i-generate-a-big-pseudo-random-number 5 In PHP, how do I generate a big pseudo-random number? eyze 2009-09-25T22:23:06Z 2009-10-05T14:50:22Z <p>I'm looking for a way to generate a <strong>big</strong> random number with PHP, something like:</p> <pre><code>mt_rand($lower, $upper); </code></pre> <p>The closer I've seen is <a href="http://pt.php.net/manual/en/function.gmp-random.php" rel="nofollow">gmp_random</a>() however it doesn't allow me to specify the lower and upper boundaries only the number of bits per limb (which I've no idea what it is).</p> <p><strong>EDIT: Axsuuls answer seems to be pretty close to what I want and very similar to gmp_random however there seems to be only one flaw in one scenario.</strong></p> <p>Suppose I wan't to get a random number between:</p> <ul> <li>1225468798745475454898787465154</li> </ul> <p>and:</p> <ul> <li>1225468798745475454898787465200</li> </ul> <p>So if the function is called <strong>BigRandomNumber</strong>():</p> <pre><code>BigRandomNumber($length = 31); </code></pre> <p>This can easily return 9999999999999999999999999999999 which is out of the specified boundary.</p> <p><strong>How can I use a min / max boundary instead of a length value?</strong></p> <pre><code>BigRandomNumber('1225468798745475454898787465154', '1225468798745475454898787465200'); </code></pre> <p>This should return a random number between <strong>1225468798745475454898787465 [154 .. 200]</strong>.</p> <p>For the reference I believe the solution might have to make use of the <a href="http://stackoverflow.com/questions/1503655/optimizing-comparisons-of-arbitrary-length-numbers-in-php/1503695#1503695">function supplied in this question</a>.</p> http://stackoverflow.com/questions/1440494/generating-a-random-seed-in-php-for-consumption-by-flash 0 Generating a random seed in PHP for consumption by Flash zombat 2009-09-17T18:18:19Z 2009-09-17T19:38:34Z <p>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 random numbers with (the seed is stored so that a particular game can be replayed later).</p> <p>If you were seeding PHP's RNG, you might use the old standby <code>(double)microtime()*1000000</code>. However, it occurred to me that if I generate a seed using this method, I'd have a smaller range than if I just used a regular <code>rand()</code> or <code>mt_rand()</code> call.</p> <p>Since the number is being generated for external consumption as a seed, and not seeding my own generator, is there anything else to consider? Is there a better method than a regular old <code>mt_rand()</code>, which would give me 2^31 possible results on 32-bit architecture?</p> <p>It's not being used for anything fancy, just to throw a little randomness into a flash game.</p> http://stackoverflow.com/questions/219475/generating-unique-codes-in-php-mysql 6 Generating unique codes in PHP/MySQL? Eaton 2008-10-20T18:55:07Z 2009-08-28T21:00:46Z <p>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, they want to make sure that ambiguous characters like 1 and I, 0 and O, etc. are not included, and they have to be explicitly stored for future use -- we can't just have an algorithm that determines 'validity' when someone tries to redeem one. Finally, they want to make sure that the codes are randomly distributed inside of a large "code space" so that people can't just guess additional codes by walking through the alphabet.</p> <p>Are there any pointers towards reasonably efficient algorithms for generating these kinds of code sets? I've scratched a few out on the back of an envelope, but this problem smells like a trap for the unwary.</p> http://stackoverflow.com/questions/1313223/replace-rand-with-opensslrandompseudobytes 1 replace rand() with openssl_random_pseudo_bytes() tylerl 2009-08-21T17:24:32Z 2009-08-21T21:50:12Z <p>I need a replacement for PHP's <code>rand()</code> function that uses a cryptographically strong random number generator. </p> <p>The <code>openssl_random_pseudo_bytes()</code> function gets you access to the strong random number generator, but it outputs its data as a byte string. Instead, I need an integer between 0 and <em>X</em>.</p> <p>I imagine the key is to get the output of <code>openssl_random_pseudo_bytes()</code> into an integer, then you can do any math on it that you need to. I can think of a few "brute force" ways of converting from a byte string to an integer, but I was hoping for something ... elegant.</p> <p><hr /></p> <p><strong>Edit</strong></p> <p>Using the suggestion from <em>angrychimp</em>, I've created a drop-in replacement for rand() using OpenSSL. I'll include it here for posterity:</p> <pre><code>function crypto_rand($min,$max) { $range = $max - $min; if ($range == 0) return $min; // not so random... $length = (int) (log($range,2) / 8) + 1; $num = hexdec(bin2hex(openssl_random_pseudo_bytes($length,$s))) % $range; return $num + $min; } </code></pre> http://stackoverflow.com/questions/1284508/php-is-rand1-1000-1000-as-probable-as-rand1-1000-rand1-1000 5 PHP - Is rand(1,1000) = 1000 as probable as rand(1,1000) = rand(1,1000) ? ropstah 2009-08-16T15:13:26Z 2009-08-16T17:25:39Z <p>Is this how PHP implemented random number generating?</p> <p>Say I want to calculate a yes or a no. Everytime I have a certain probability percentage (say: 0,05% for this example).</p> <p>I do:</p> <pre><code>$possibilities = 100 / $probabilityPercentage; //$possibilities = 2000 $yes = rand(1,$possibilities); $yesCheck = $possiblities; //OPTION 1 $yesCheck = rand(1,$possibilities); //OPTION 2 ($yesCheck == $yes) ? return true : return false; </code></pre> <p><strong>Does it give the same results with either option?</strong></p> http://stackoverflow.com/questions/1041509/php-best-random-numbers 0 PHP: Best random numbers marco92w 2009-06-24T23:39:50Z 2009-06-25T18:03:00Z <p>Hello!</p> <p>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 to improve them again?</p> <p>My idea:</p> <pre><code>&lt;?php function rand_best($min, $max) { $generated = array(); for ($i = 0; $i &lt; 100; $i++) { $generated[] = mt_rand($min, $max); } shuffle($generated); $position = mt_rand(0, 99); return $generated[$position]; } ?&gt; </code></pre> <p>This should give you "perfect" random numbers, shouldn't it?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/5611/better-random-generating-php 4 Better Random Generating PHP Unkwntech 2008-08-08T03:18:56Z 2008-10-05T05:49:27Z <p>I know that just using rand() is predictable, if you know what your doing, and have access to the server.<br /></p> <p>I have a project that is HIGHLY dependent on choosing a random that is as unpredictable as possible. So I'm looking for suggestions, either other built in functions, or user functions that can generate a 'better' random number.<br /><br /> I used this to do a little test:</p> <pre><code>$i=0; while($i&lt;10000) { $rand = rand(0,100); if(!isset($array[$rand])) { $array[$rand] = 1; } else { $array[$rand]++; } sort($array); $i++; } </code></pre> <p>I found the results to be evenly distributed, and there is an odd pattern to the number of times each number is generated.</p>