時間、カウンター、および 1 から 10 までのランダムな先頭に追加された値に応じて、一意の ID を生成する必要があります。生成方法は次のとおりです。
$time = (int)(time()+$i);
$time = $time.(rand(1,9));
//At this step we have strings looking like this:
"13480835672" //This is time in first iteration
"13480835672" //This is time in second iteration
//But if I convert it to int
$time = (int)$time;
2147483647 //This is time converted in first iteration
2147483647 //This is time converted in second iteration
ご覧のとおり、時間は同じです。それらのすべて。ここで何が欠けていますか?