vote up 7 vote down star
4

How can I generate a (pseudo)random alpha-numeric string, something like: 'd79jd8c' in PHP?

flag

6 Answers

vote up 9 vote down check

First make a string with all your possible characters:

 $characters = 'abcdefghijklmnopqrstuvwxyz0123456789';

You could also use range() to do this more quickly.

Then, in a loop, choose a random number and use it as the index to the $characters string to get a random character, and append it to your string:

 $string = '';
 for ($i = 0; $i < $random_string_length; $i++) {
      $string .= $characters[rand(0, strlen($characters) - 1];
 }

$random_string_length is the length of the random string.

link|flag
1  
This implementation is also nice if you wish to remove characters that look the same such as "l" and "1", "O" and "0". This is worthwhile when generating new passwords for users. – Mark Nold Sep 7 '08 at 11:04
I also use this technique and remove all the vowels so I don't accidentally give someone something rude for a password. – nickf May 6 at 1:20
1  
You're missing a close parenthesis after the "- 1" and before the "]" – joedevon Jul 24 at 5:46
vote up 1 vote down

To make one that is seven characters long like your example above, just try this:

$unique_key = substr(md5(rand(0, 1000000)), 0, 7);

link|flag
note that this will only contain numbers and the letters a-f – nickf May 6 at 1:17
vote up 1 vote down

The code sample at Generate Random Strings Using PHP allows you to do just that. With little knowledge of php, you can customize that function to get the type of random strings you need:

  • only characters e.g. ucvtbp3v
  • mix of digits and characters e.g. 9JP2E06R
  • mix of characters, digits and symbols e.g. 2sczkf-j
link|flag
vote up 0 vote down

Use the ASCII table to pick a range of letters, where the: $range_start , $range_end is a value from the decimal column in the ASCII table.

I find that this method is nicer compared to the method described where the range of characters is specifically defined within another string.

// range is numbers (48) through capital and lower case letters (122)
$range_start = 48;
$range_end   = 122;
$random_string = "";
$random_string_length = 10;

for ($i = 0; $i < $random_string_length; $i++) {
  $ascii_no = round( mt_rand( $range_start , $range_end ) ); // generates a number within the range
  // finds the character represented by $ascii_no and adds it to the random string
  // study **chr** function for a better understanding
  $random_string .= chr( $ascii_no );
}

echo $random_string;

See More:

link|flag
vote up 0 vote down

Very nice and compact.......Kudos!!!!

link|flag
2  
Please post comments as a comment and not as a answer. – Unkwntech May 6 at 3:14
vote up 0 vote down

You have missing parenthesis in your post for the rand() function Jeremy.

link|flag

Your Answer

Get an OpenID
or

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