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.
如果我使用 PHP uniqid() 函数生成 ID,然后在 MySQL 中按字母顺序对 ID 进行排序,它们的创建顺序是否相同?
在我看来他们应该是,因为 ID 只是增加十六进制字符(至少我认为它们是),但有人确定吗?
uniqid() 函数根据微时间(当前时间,以微秒为单位)生成唯一 ID。
所以我可能会说是的。
来源:http ://www.w3schools.com/php/func_misc_uniqid.asp