uniqid
Generate a unique ID
&reftitle.description;
stringuniqid
stringprefix""
boolmore_entropy&false;
Gets a prefixed unique identifier based on the current time in
microseconds.
&caution.cryptographically-insecure;
This function does not guarantee uniqueness of return
value. Since most systems adjust system clock by NTP or like,
system time is changed constantly. Therefore, it is possible that
this function does not return unique ID for the
process/thread. Use more_entropy to
increase likelihood of uniqueness.
&reftitle.parameters;
prefix
Can be useful, for instance, if you generate identifiers
simultaneously on several hosts that might happen to generate the
identifier at the same microsecond.
With an empty prefix, the returned string will
be 13 characters long. If more_entropy is
&true;, it will be 23 characters.
more_entropy
If set to &true;, uniqid will add additional
entropy (using the combined linear congruential generator) at the end
of the return value, which increases the likelihood that the result
will be unique.
&reftitle.returnvalues;
Returns timestamp based unique identifier as a string.
This function tries to create unique identifier, but it does not
guarantee 100% uniqueness of return value.
&reftitle.examples;
uniqid Example
]]>
&reftitle.notes;
Under Cygwin, the more_entropy must be set
to &true; for this function to work.