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.
我正在构建一个小 API。
用户可以使用 api“共享”一个对象,但我想限制用户在 24 小时内只共享一次对象。例如,我有 5 个对象。用户可以共享每个对象,但只有在 24 小时后,他才能再次共享特定对象。
PS:每个对象都有一个ID。
谢谢
启动时保存一个 time() 值,然后在每次访问时将其与当前 time() 值进行比较。如果差值大于 60*60*24,那么您知道 24 小时已经过去。