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.
我有一个 php var,它指示用户执行下一个操作需要多长时间。我想使用 js 显示这个,但是我不希望 js 执行减法而是 PHP。我考虑过使用 cronjob,但它的最小间隔为 1 分钟。有没有(简单的)解决方案?提前非常感谢。
为什么不在用户下次可以执行下一次操作的数据库中存储时间戳?然后可以使用它来计算当前时间戳与数据库中的时间戳之间的差异,因此您还有几秒钟的时间,直到他们可以执行该操作。