自分の Web サイトに、スケジュールされた時間にアクセスしたい URL があり、一度、URL に異なるパラメーターが含まれます。たとえば、次のようになります。
www.mysite.com?user_id=1 ==> execute this once 5 minutes from now
www.mysite.com?user_id=2 ==> execute this once 10 minutes from now
www.mysite.com?user_id=3 ==> execute this once 15 minutes from now
www.mysite.com?user_id=4 ==> execute this once 20 minutes from now
どうすればphpでこれを行うことができますか? cron ジョブの使用を検討していましたが、これは繰り返しのアクションに使用されているようでしたが、この場合は 1 回だけ実行したかったのです。また、スリープの使用を検討していましたが、スリープは現在の実行をブロックします。これを行う他の代替手段はありますか?