Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<?php
        if (isset($_POST['Roll!'])) {
                    $sides = $_POST['sides'];
                    $rolled = rand(1,$sides);

                    echo "$rolled was rolled by the dice, it is now out!";
        }
?>

This is the code I currently have. After rolling that number, however, I want it to roll again, but without the previously rolled number, until it has rolled all number except one, which would be the winning number. I have no idea how to go about doing that. Any ideas?

EDIT: I'm sorry, I should have been more clear, thank you all for the help so far, but I also need to echo each number rolled, such as

echo "$rolledArray[0] was rolled, it lost.\n";
echo "$rolledArray[1] was rolled, it lost.\n";
echo "$rolledArray[2] was rolled, it lost.\n";
echo "$rolledArray[3] was rolled, it lost.\n";
echo "$rolledArray[x] was rolled, it lost.\n";
echo "$rolledArray[x] was rolled, it lost.\n";
echo "$rolledArray[50?] was rolled, it lost.";

EDIT AGAIN: Also I only want them to have to click Roll! once, not multiple times until they've rolled all the numbers, meaning no need for session, I think, though I could be wrong, most of you are clearly more experienced than me.

Sorry, I should have mentioned that before as well.

share|improve this question
What the hell is rand(1,$sides) = $rolled? Isn't that backwards? – Nicolás Feb 6 '10 at 23:32
Yes, that line would never work it gives a "Fatal error: Can't use function return value in write context" error. Never seen that one before! – JAL Feb 6 '10 at 23:35
You're right. What I should have said was "this is ROUGHLY the code I currently have." That however is not the point being made here. – Rob Feb 6 '10 at 23:40
There. That's sorted. – Rob Feb 6 '10 at 23:41

7 Answers

up vote 5 down vote accepted

To answer your direct question: You can put all of the possible numbers into an array, and get a random index for that array. Once you have an index, remove the item from the array and redo the random over the smaller array:

$possible = range(1, $_POST['sides']);     // build the possible values
$rolledIndex = rand (0, count($possible)); // get a random index
$rolled = $possible[$rolledIndex];         // get the rolled number

unset($possible[$rolledIndex]);            // and remove the rolled nuber

// now you can simply redo the random:
$rolledIndex = rand (0, count($possible)); // get a random index on the smaller array
$rolled = $possible[$rolledIndex];         // get the 2nd rolled number

However, If you want to have a random order on the dice throws, simply use this:

// generate an array with all values from 1 to the posted value (e.g. 1,2,3,4,5,6)
$possible = range(1, $_POST['sides']);  

// this reorders the array by random (e.g. 4,3,1,5,2,6)
$throwOrder = $possible;
shuffle($throwOrder); 
print_r($throwOrder);

Now you can simply iterate over the $throwOrder array and have a random order of dice throws:

Array (
    0 => 4,
    1 => 3,
    2 => 1,
    3 => 5,
    4 => 2,
    5 => 6
)

Edit To get the desired output from the second method, simply do this:

// get the last index of the array of thrown dices
$lastIndex = count($throwOrder)-1;
// iterate through the array, printing the results
foreach ($throwOrder as $key => $rolled) {
    // check if the current key matches the last key in the array
    if ($key != $lastIndex) {
        // if not, the number has lost
        echo $rolled, " was rolled, it lost.\n";
    } else {
        // we have reached the last element of the array
        echo $rolled, " was the last, it won.\n";
    }
}
share|improve this answer
I'd prefer this method, however I would not use "unset" and "rand(0,count)" but instead just "array_shuffle" followed by "array_shift" to pull a random yet never repeating value until the array is empty. – hurikhan77 Feb 6 '10 at 23:45
Thanks for the help, but I was wondering if you could also explain all of it, maybe in comments or something. I'd like to understand what all of it does instead of just having someone else code it for me. Thanks – Rob Feb 7 '10 at 18:42
Hi Rob. Good approach :-) I added comments to the code (although most of the comments are just a natural way of telling what the code does, please don't copy this commenting style!) – Dan Soap Feb 7 '10 at 21:56
Ah thanks. Now how would I put this all together – Rob Feb 7 '10 at 23:09
Simply put the second and the fourth code block from above in one php script and call it via a post form. The rest should be straight away – Dan Soap Feb 7 '10 at 23:31
show 5 more comments

I think you need to have array $thrownNumbers, which holds every number previously thrown. And every new throw (OMG... the word), you check if it's in array. If yes, throw again. Simplest possible solution.

Edit: As for keeping the array during moving to another page, you can use:

  • $_SESSION
  • cookies (hm)
  • have serialized array as hidden value in form

There.

share|improve this answer
That doesn't seem to be possible with this (or not as straightforward), because it's responding to a form submission. Each page load gets a new instance of the interpreter and therefore the array would not be available on the next page load... you need some sort of way to save the state, i.e. persistence. – JAL Feb 6 '10 at 23:37
There is my reply :) – Adam Kiss Feb 6 '10 at 23:44

You can throw it in the $_SESSION to keep track of it between posts/request or append it to the URL and pass it yourself each time as a URI param.

share|improve this answer
1  
Session is a good idea. I wouldn't use the URL as it would be open to tampering (of course, I don't know the asker's mission here or whether that matters). – JAL Feb 6 '10 at 23:39
Agreed - URL is bad, but its not like this is tampering a SQL query, where if someone tampers this, its not a sploit - but still yeah I agree with you. +1 – Mr-sk Feb 6 '10 at 23:41
<?php
if(!isset($_SESSION['numbers']){
 $_SESSION['numbers'] = range(1,6); //same as array(1,2,3,4,5,6)
}
$numbers = $_SESSION['numbers'];

if(count($numbers)>1){ //is more than one number left
 $rand_index = array_rand($numbers); //choose a number from an array, returns the index
 print('you rolled '.$numbers[$rand_index].' loser'); // tell them they lost
 unset($numbers[$rand_index]); //remove that element from the array
 $_SESSION['numbers'] = $numbers; //set new array back to session
}else{
 print(array_pop($numbers).' is the winner!'); //pop the remaining number out of the array and print it with winner notification
}
?>

edit: updated to session usage

share|improve this answer
...or the other way around :) ... – Adam Kiss Feb 6 '10 at 23:37
I think this now deals with the desired answer most effectively. – Mike Sherov Feb 6 '10 at 23:48

It is not a bad idea to add to the URL if you use properly. The good side is that you don't store data in the session, the bad side is that the request is bigger each time. To avoid tampering you can use:

$url = 'numbers.php?throwed='.implode(',',$throwed).'&sign='.sha1(serialize($throwed).'mysecretpassword');

And use this to get check:

$throwed = explode(',',$_GET['throwed']);
$not_tampered = sha1(serialize($throwed).'mysecretpassword') == $_GET['sign'];
share|improve this answer
+1 for the tampering! But this approach wouldn't work for a million throws, simply because a url string is limited in length. Having all numbers from 1 to 999,999 in your get string would be a length of about 7.5 million characters ... – Dan Soap Feb 7 '10 at 23:38
you can still use a post aproach, adding a hidden field on a form and keeping the same logic. – useless Feb 8 '10 at 0:25
@user267351: When changing to $_POST, I agree. But I think transferring gigabytes worth of data through the net just to get distinct random numbers is worse than using $_SESSION. When you come to this amount of data, i guess a bitmask with a million bits would be more feasable (125.000 bytes) – Dan Soap Feb 8 '10 at 1:53
sure, my post method isnt good enough but no one say nothing about the cookies, cookies does the same, send the results back and foward each time a request its made, and not even to one script but every script. So i guess you can say use cookies its not a good solution but really depends on how much numbers the program genetares, and if they are very little amount its better to add it to the request instead to have gygabites of session files. – useless Feb 8 '10 at 4:01

Just create an array (or other type of list) of all possible numbers and randomly order it. Then, instead of picking a new number each time just advance through the array until you get to the last but one.

Alternatively, you could just go straight to the last number in the list and that's the winner.

share|improve this answer

It depends on the situation, but creating an array with all the possible numbers for all the visitors in your web can be a very bad idea, sessions files can grow unnecessarily. If they are like numbers from 1 to 10 I think it would be OK, but if they are numbers from 1 to 1 million creating arrays with those ranges saved in the session is pretty much a bad idea. I think it's better to save the rolled results and generate a new one until it doesn't exist in the array.

share|improve this answer
so what if you have a million numbers and 998,999 were picked already. Are you going to keep generating random numbers until it randomly picks the 1/500,000 chance of finding a number it hasn't already picked? That's insane. – Mike Sherov Feb 6 '10 at 23:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.