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 時間に 1 回だけに制限したいと考えています。たとえば、5 つのオブジェクトがあります。ユーザーはすべてのオブジェクトを共有できますが、特定のオブジェクトを再度共有できるのは 24 時間後です。
PS: すべてのオブジェクトには ID があります。
ありがとう
開始時に time() 値を保存し、アクセスするたびに現在の time() 値と比較します。差が 60*60*24 より大きい場合は、24 時間が経過したことがわかります。