Complete PHP Misc Reference
The uniqid() function generates a unique ID based on the microtime (current time in microseconds).
| Parameter | Description |
|---|---|
| prefix | Optional. Specifies a prefix to the unique ID (useful if two scripts generate ids at exactly the same microsecond) Note: This parameter became optional in PHP 5 |
| more_entropy | Optional. Specifies more entropy at the end of the return value. This will make the result more unique. When set to TRUE, the return string will be 23 characters. Default is FALSE, and the return string will be 13 characters long |
Note: The generated ID from this function is not optimal, because it is based on the system time. To generate an extremely difficult to predict ID, use the md5() function (can be found in the String reference).
The output of the code above could be:
Complete PHP Misc Reference
Your message has been sent to W3Schools.