我正在尝试将MySQL数据库中的日期时间显示为PHP的iso 8601格式的字符串,但是它出了错。
2008年10月17日的输出格式为:1969-12-31T18:33:28-06:00这显然是不正确的(年份应该是2008年而不是1969年)
这是我正在使用的代码:
<?= date("c", $post[3]) ?>
$post[3] is the datetime (CURRENT_TIMESTAMP) 从我的MySQL数据库。
$post[3] is the datetime (CURRENT_TIMESTAMP)
任何想法出什么事了吗?
的第二个参数date是UNIX时间戳,而不是数据库时间戳字符串。
date
您需要使用strtotime转换数据库时间戳。
<?= date("c", strtotime($post[3])) ?>