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.
我有一个 json 对象,它以某种 UTC 格式为我提供日期。
“日期”:新日期(日期。UTC(2013,1,5,13,53,47))
如何将其存储在 mysql 中,我应该使用哪种列类型?我正在使用 PHP 来检索/存储数据
以YYYY-mm-dd. 您不能在一行中完全做到这一点,所以试试这个:
YYYY-mm-dd
var d = new Date(Date.UTC(/* your stuff */)); ... "date": d.getFullYear() + '-' + d.getMonth() + '-' + d.getDate()
编辑:
在 PHP 方面说那date是在$_POST['date']. 用于date('Y-m-d', strtotime($_POST['date']))获取要存储在 MySQL 中的值。
date
$_POST['date']
date('Y-m-d', strtotime($_POST['date']))