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 来舍入我的 UTC 日期。有没有人看到使用此代码这样做有任何巨大的问题:
echo date('D, d M Y H:i:s',strtotime(date('d M Y', time())));
抱歉,代码将给出当前日期,但在上午 12:00。有没有更简单/更好的方法来做我在这里想做的事情?
如果要使用特定时间,则只需输入实际时间:
echo date('D, d M Y 00:00:00', strototime($date));