このコードは、チケットの Uniques コードの生成に使用する予定です。
// A prefix to avoid uniqid collisions (when invoking this function at the same time).
// Should I use mt_rand or just rand?
$prefix = str_pad(dechex(mt_rand(0, 0xFFFFFF)), 6, '0', STR_PAD_LEFT);
// uniqid with more entropy enabled.
$unique_id = uniqid("$prefix-", TRUE);
// A SHA-1 hash for the generated code, this way it looks less sequential.
$unique_id = sha1($unique_id);
このコードの問題点を教えていただけると助かります。
事前にThx。