home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Book HomePHP CookbookSearch this book

4.22. Shuffling a Deck of Cards

4.22.3. Discussion

Here, a pair of arrays, $suits and $cards, is created to hold the English representation of a card. The numbers 0 through 51 are randomly arranged and assigned to $deck. To deal a card, just pop them off the top of the array, treating the array like a literal deck of cards.

It's necessary to add the check against NULL inside the while, otherwise the loop terminates when you draw the zeroth card. If you modify the deck to contain the numbers 1 through 52, the mathematics of deciding which number belongs to which card becomes more complex.

To deal multiple cards at once, call array_slice( ):

array_slice($deck, $cards * -1);

4.22.4. See Also

Recipe 4.21 for a function that randomizes an array; documentation on array_slice( ) at http://www.php.net/array-slice.



Library Navigation Links

Copyright © 2003 O'Reilly & Associates. All rights reserved.