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 页面显示:
31-12-1969
如何避免这种情况并显示日期空白或 0:0:0
如您所知,UNIX 时间戳描述了从 1970 年 1 月 1 日午夜开始的秒数。因此,您的 0:0:0 没有任何意义,而 31-12-1969 实际上意味着零,零数据具有有效格式但自 UNIX 时代以来,在时间轴上没有任何位置。因此,如果您正确评估它,它是空白的。
(感谢Leigh的观察)