目录

PHP uniqid() 函数

❮ PHP 其他参考

示例

生成唯一ID:

<?php
echo uniqid();
?>
亲自试一试 »

定义和用法

uniqid() 函数根据 microtime(当前时间,以微秒为单位)生成唯一 ID。


语法

uniqid( prefix,more_entropy)

参数值

Parameter Description
prefix Optional. Specifies a prefix to the unique ID (useful if two scripts generate ids at exactly the same microsecond)
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

技术细节

返回值: 以字符串形式返回唯一标识符
PHP 版本: 4+
变更日志: 这个字首参数在 PHP 5.0 中成为可选的。
长度限制为 114 个字符字首在 PHP 4.3.1 中提出。

❮ PHP 其他参考