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()、1秒まで正確であるため、同じクロック秒内で2回実行すると、重複するキーが生成されます。
md5(uniqid("", true))
time()
mktime()