Jump to content

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
https://forums.phpfreaks.com/topic/79922-no-repeating-rand/
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
https://forums.phpfreaks.com/topic/79922-no-repeating-rand/#findComment-404816
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.