Random PHP string

I needed to generate a random string in php that did not repeat. This little snippet will generate a random non-repeating 32 character string.

// Generate random 32 character string
$string = md5(time());

This entry was posted in .

Leave a Reply

Your email address will not be published. Required fields are marked *