我现在 PHP 都是用 time()
得到的 unix timestamp.
你们用什么。
用别的格式像 datetime
有什么优势?
大家讲道理2017-04-10 14:36:06
datetime
,好处是易于人类阅读,并且不受 unix timestamp 的起止范围限制。
timestamp
,好处是易于计算两个时间点之间的时间差,并且节省空间;一定程度上易于索引。
还有就是性能问题了,如果是 MySQL 的话,建议看看: http://gpshumano.blogs.dri.pt/2009/07/06/mysql-datetime-vs-timestamp-vs-int-performance-and-benchmarking-with-myisam/