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.
我有一个想法表,其中有一个日期字段,我想检查想法是否已过期。
如果想法的日期小于今天,则状态正常,否则想法状态为过期。
我必须在哪里编写这个函数,如果我必须在启动应用程序时检查所有想法。
对我来说听起来像是一项 cron 工作。创建一个简单的脚本,根据日期设置您的想法状态,并在每晚运行。
您可以为您的班级提供一个isExpired()方法:
isExpired()
public function isExpired() { $today = new \DateTime; return $this -> date < $today; }