Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用其中一个来创建序列号。我想知道 md5(uniqid()) 或 md5(mktime()) 更好用吗?
哪个获得重复密钥的更改较少?
md5(uniqid("", true))是更好的方法。 time()并且mktime()精确到一秒,因此在同一时钟秒内的两次执行会产生重复的密钥。
md5(uniqid("", true))
time()
mktime()