Hello everyone!
I need to generate two numbers that are NOT equal in PHP.
I know that I use $random1 = (rand()%9); to generate random a number between 0-9. I need to add something to this I guess.
Thanks!
|
|
|
|
|
|
|
|
||||||||||||||
|
|
|
If you simply want unique numbers, just start at zero and add +1 for every new number. If you need random unique numbers, just save your previous numbers in a list and when you need a new one, just generate random numbers until you found one, which is not in that list. If you need unique identifiers, you can use the built-in function |
||
|
|
|
|
In this way they are never equal(as at least 1 will be added to $random1 ) if both number have to be from 0-9, you just have to do it with a last mod-operation:
|
||||||
|
|
|
Hi Interpreting your question rather heavily it looks like you want to pseudo-randomly generate 2 different integers between 0 and 9 inclusive ? So generate the first, generate another, if it's the same as the first repeat until it isn't. I assert, without justification, that this will be as efficient as any other method. Regards Mark |
||||||
|
|
|
|
||||||
|
|
|
|
||||||
|
|
|
I think you'll find that If you want two numbers in that range, the easiest way is to generate one in that range then generate another in one less than that range and, if it's identical or greater, increment it. This is the mathematical way to do it, and it's deterministic (always two calls to On the first attempt, you have the full range to choose from (10 numbers, 0 through 9). On the second you have the full range minus the number already chosen. So, if your first number was 7, you generate a number from 0 through 8 and map 7 to 8 and 8 to 9:
|
||||||||||
|
|
|
|
||||||||
|
|
|
This might do the trick without being a math wiz :) |
||
|
|
|
|||
|
|
|
|
Alix Axel's solution was the most straightforward and worked fine for me. I wanted three random entries from an existing array, so I used
And then displayed entries for which the key was in |
||
|
|