How can I generate a (pseudo)random alpha-numeric string, something like: 'd79jd8c' in PHP?
|
4
|
|
|
|
|
|
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. |
||||||||||
|
|
|
You have missing parenthesis in your post for the rand() function Jeremy. |
||
|
|
|
|
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:
|
||
|
|
|
|
Very nice and compact.......Kudos!!!! |
||||
|
|
|
To make one that is seven characters long like your example above, just try this:
|
||
|
|
|
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: |
|||
|
|
