PHP 基础转换?
以下函数产生的输出总是唯一的吗?
base_convert(uniqid(), 10, 36);
谢谢。
Will the output prododuced by the following function always be unique?
base_convert(uniqid(), 10, 36);
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Uniqid 不保证是唯一的。如果您在多个服务器上运行脚本,它们可能会在完全相同的微秒内运行调用并给出相同的结果。然而,这种情况不太可能发生。
此外,uniqid 不会返回以 10 为基数的数字,因此您的代码肯定不会给出唯一的结果。
Uniqid is not guaranteeed to be unique. If you are running your script on multiple servers they may run the call at the exact same microsecond and give the same result. This is very unlikely however.
Moreover, uniqid does not return a base-10 number so your code will definitely NOT give a unique result.
不像你想要的那样随机。如果你使用的是 Linux,最好从
/dev/random
读取not as random as you want to. if you are on linux, better read from
/dev/random