How to generate a Unique ID

Posted on August 30, 2008, Filled under PHP,  Bookmark it

Thanks for visiting our website! We regularly publish posts like this one. If you are interested in receiving the latest updates as soon as they are posted, please consider subscribing to the RSS feed or to our e-mail newsletter.

A function that generates an unique id. It’s useful when you need to generate keys that have to be unique.

<?php
function GenerateUniqueID()
{
return md5(uniqid(rand(),1));
}

echo GenerateUniqueID(); // returns a 32 characters unique string
?>

Do you wish to receive the latest updates as soon as they are posted? Get our RSS Feed or Subscribe to the Newsletter!

Get our RSS Feed!

Sponsors

One Reply to "How to generate a Unique ID"

  1. Thanks for a short but helpful bit of information.

Leave a Reply


* = required fields

(will not be published)


XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


  

CommentLuv Enabled