Jump to content

no repeating rand


asmith

Recommended Posts

hey guys  :D

 

how can i use rand finction to give me diffrent numbers each time ? never repeat a number twice ?

 

i mean NOT like this :

 

$a = rand(1,100)

$b =rand(1,100)

while ($a == $b)
{
$b = rand(1,100)
}

 

 

maybe this code is simple , but makes trouble when going for the 3rd number, what about the 20th number ?!!

Link to comment
Share on other sites

You need to store any previously generated random numbers in an array and check newly generated numbers against those stored.

Something like:

<?php
$used = array();
$a = rand(1,100);
$used[] = $a;
$b = rand(1,100);
while (in_array($b,$used)) $b = rand(1,100);
$used[] = $b;
?>

 

Note: not tested.

 

Ken

 

Link to comment
Share on other sites

yea i guess it would work ,

if the rand range is (1,200) 

and we have 1 to 199 in $a  array , would it takes time to rand and rand and rand till accidently find the number 200 ?

if the the rand range go higher ,the last numbers wouldn't take so long to be found ?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.