generateID.php 342 B

1234567891011121314151617
  1. <?php
  2. function generateID() {
  3. // Generate id based on the current microtime
  4. $id = str_replace('.', '', microtime(true));
  5. // Ensure that the id has a length of 14 chars
  6. while(strlen($id)<14) $id .= 0;
  7. // Return id as a string. Don't convert the id to an integer
  8. // as 14 digits are too big for 32bit PHP versions.
  9. return $id;
  10. }
  11. ?>