我希望验证POST请求发送的UTC日期,然后再将其插入我的数据库。
$date = "2014-08-11T16:32:13.000Z"
检查日期是否正确的最佳方法是什么?
答案 0 :(得分:1)
try {
$dt = new DateTime($date);
// $dt->format(DateTime::ATOM); // contains valid date
}catch(Exception $exception) {
// invalid $date
}