我在自己的网站中有一个 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 作业,但这似乎用于重复操作,而在这种情况下,我希望它只执行一次。我也在考虑使用睡眠,但是睡眠会阻止当前的执行。还有其他选择吗?