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.
これは問題ありませんが、重複が発生します。マシンの日付と時刻を割り当てて、その 6 桁の一意に適用する方法は?
動作していません:sprintf("%0d", mt_rand(1, 999999));
sprintf("%0d", mt_rand(1, 999999));
これを試してください:
sprintf("%06d", mt_rand(1, 999999));
同様に、以下もご覧ください。
uniqid();
それも使えそう…。
http://php.net/manual/en/function.uniqid.php