How can I generate a (pseudo)random alpha-numeric string, something like: 'd79jd8c' in PHP?
|
feedback
|
|
First make a string with all your possible characters:
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:
$random_string_length is the length of the random string. | |||||||||||
feedback
|
|
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.
See More: | ||||
|
feedback
|
|
To make one that is seven characters long like your example above, just try this:
| |||||
feedback
|
|
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:
| |||
|
feedback
|
|
Jeremy's answer is great. If, like me, you're unsure of how to implement range(), you can see my version using range().
This does the exact same thing as Jeremy's but uses merged arrays where he uses a string, and uses count() where he uses strlen(). | |||
|
feedback
|
|
Maybe I missed something here, but here's a way using the uniqid() function. | |||
|
feedback
|