De traductores profesionales, empresas, páginas web y repositorios de traducción de libre uso.
guid(globally unique identifier)
globally-unique identifier
Última actualización: 2006-09-06
Frecuencia de uso: 1
Calidad:
uuid(universally unique identifier)
universally unique identifier
Última actualización: 2006-09-06
Frecuencia de uso: 1
Calidad:
if you need a unique identifier or token and you intend to give out that token to the user via the network (i.e. session cookies), it is recommended that you use something along the lines of
$token = md5( uniqid("")); / / no prefix $better_token = md5(uniqid(rand(),1)); / / better, difficult to guess
Última actualización: 2011-10-24
Frecuencia de uso: 1
Calidad:
Advertencia: contiene formato HTML invisible
uniqid() returns a prefixed unique identifier based on the current time in microseconds. the 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. prefix can be up to 114 characters long.
the 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.
Última actualización: 2011-10-24
Frecuencia de uso: 1
Calidad: