Query: uniqid
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UNIQID(3) 1 UNIQID(3) uniqid - Generate a unique IDSYNOPSISstring uniqid ([string $prefix = ""], [bool $more_entropy = false])DESCRIPTIONGets a prefixed unique identifier based on the current time in microseconds. Warning This function does not create random nor unpredictable strings. This function must not be used for security purposes. Use a cryp- tographically secure random function/generator and cryptographically secure hash functions to create unpredictable secure IDs.PARAMETERSo $prefix - Can be useful, for instance, if you generate identifiers simultaneously on several hosts that might happen to generate the iden- tifier 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. o $more_entropy - If set to TRUE, uniqid(3) 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.RETURN VALUESReturns the unique identifier, as a string.EXAMPLESExample #1 uniqid(3) Example <?php /* A uniqid, like: 4b3403665fea6 */ printf("uniqid(): %s ", uniqid()); /* We can also prefix the uniqid, this the same as * doing: * * $uniqid = $prefix . uniqid(); * $uniqid = uniqid($prefix); */ printf("uniqid('php_'): %s ", uniqid('php_')); /* We can also activate the more_entropy parameter, which is * required on some systems, like Cygwin. This makes uniqid() * produce a value like: 4b340550242239.64159797 */ printf("uniqid('', true): %s ", uniqid('', true)); ?>NOTESCaution This function does not generate cryptographically secure tokens, in fact without being passed any additional parameters the return value is little different from microtime(3). If you need to generate cryptographically secure tokens use openssl_ran- dom_pseudo_bytes(3). Note Under Cygwin, the $more_entropy must be set to TRUE for this function to work. PHP Documentation Group UNIQID(3)
Related Man Pages |
---|
microtime(3) - php |
cubrid_field_seek(3) - php |
empty(3) - php |
uniqid(3) - php |
uuidgen(1) - opendarwin |
Similar Topics in the Unix Linux Community |
---|
printf issue on Cygwin |
is open source more secure ? |
/var/log/secure* mysteriously empty! |