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.
如果他们没有登录网站,我需要在 3 个月后过期帐户。我怎样才能在代码中自动寻址来做到这一点?如何在 php 语言中解决三个月内自动从数据库中删除用户的问题?
你有两个选择:
运行一个 cron 作业,选择 3 个月未登录的用户,并将他们的帐户标记为已删除(恕我直言,实际上不要删除它们,可能只是一些残留数据)
用户登录时,查看上次登录时间,如果大于3个月,则返回错误并强制用户注册。