How I can get random words without repeating in PHP? Help

link|improve this question
1  
Could you maybe give us an example of what you're looking for? What is a "random word"? Is it a random collection of letters? Or do you want dictionary words? If the latter, you need to have a word list. To avoid repeating, you should store the words you've already produced (probably using a hashtable) and avoid printing the same one twice. – Borealid Jul 25 '10 at 16:05
Could you tell me 1 to 9 and a to z random words but with out repeating? Thanks. – ABC Girl Jul 25 '10 at 16:07
1  
@ABC: What do you mean by "without repeating"? aabc is not allowed, or abc1, abc1 is not allowed? – KennyTM Jul 25 '10 at 16:08
1  
deleted (obviously it's too late for me doze) – Florian Reischl Jul 25 '10 at 16:10
Sorry for my unproficient English. I mean, I have to need min 1 to max 6 words with 0 to 9 and a to z but I don't need old words again. Thanks – ABC Girl Jul 25 '10 at 16:13
show 3 more comments
feedback

4 Answers

Use this list of word put it into a text file. Then use the file() function to read the words into an array and select two random elements using array_rand()

link|improve this answer
feedback
$words = preg_split('//', 'abcdefghijklmnopqrstuvwxyz0123456789', -1);
shuffle($words);
foreach($words as $word) {
    echo $word . '<br />';
}

http://php.net/manual/en/function.shuffle.php

link|improve this answer
Is no repeating? – ABC Girl Jul 25 '10 at 16:08
@ABC Girl - That will shuffle the array of words, and print them out one by one, so no, no repeating. – karim79 Jul 25 '10 at 16:09
1  
If the array can have double values add $words = array_unique($words); before the shuffle() – Wrikken Jul 25 '10 at 16:11
Thanks, but I need random words with 0 to 9 and a to z keywords for my ID table. So, I don't need repeat. – ABC Girl Jul 25 '10 at 16:15
@ABC Girl - something like that? I'm having trouble understanding what you mean... – karim79 Jul 25 '10 at 16:20
feedback
function getrandomstring($length) {

       global $template;
       settype($template, "string");

       $template = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
       /* this line can include numbers or not */

       settype($length, "integer");
       settype($rndstring, "string");
       settype($a, "integer");
       settype($b, "integer");

       for ($a = 0; $a <= $length; $a++) {
               $b = rand(0, strlen($template) - 1);
               $rndstring .= $template[$b];
       }

       return $rndstring; 
}
link|improve this answer
Is without repeat? I mean, I have use this random keywords in database table ID. So, I don't need repeat keywords. Thanks – ABC Girl Jul 25 '10 at 16:20
feedback

If you don't want to type the alphabet manually, you can do the folowing:

<?php
function getRandomWord($len = 10) {
    $word = array_merge(range('a', 'z'), range('A', 'Z'));
    shuffle($word);
    return substr(implode($word), 0, $len);
}

codepad example

If this is a database id, i suggest you the folowing:

function createUniqueId() {
    while (1) {
       $word = getRandomWord();
       if (!idExists($word)) { // idExists returns true if the id is already used
           return $word;
       }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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