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.
我一直在我的网站中使用字符串来格式化数据库中保存的日期戳,到目前为止,我使用的方法一直很好。这是代码:
$memberdate = $member['date']; $memberdate = date('jS F Y', strtotime($memberdate));
初始 $membersate 值为1381742596 - 输出值为1970 年 1 月 1 日
有谁知道为什么这适用于所有其他页面/脚本但现在不行的原因?
strtotime()使用,当你转换即。“2013-11-07 16:29:30”为其整数值。
strtotime()
但是您已经将它作为 unix_timestamp (整数值),因此您不需要使用strttotime().
strttotime()
$memberdate = date('jS F Y', $member['date']);