MySQL不接受有效的DateTime

时间:2019-05-31 14:48:11

标签: php mysql datetime

我正在尝试使用PHP抓取并显示博客文章到我的网站上,并将它们存储到MySQL数据库中。创建它们的某些时间戳不被接受,并且这些时间戳是有效的。例如“ 2019-03-31 01:01:00”

试图重新设置时间戳,但仍然是相同的错误。

原始时间戳为“ 31/03”,我这样做是为了进行转换:

$datetime = date('Y-m-d H:i:s',strtotime($timestamp));

插入之前

它默认出现错误:

Invalid datetime format: 1292 Incorrect datetime value: '2019-03-31 01:01:00' for column 'post_date'

0 个答案:

没有答案