使用 Angular Material Datepicker,当我提交我得到的表单时:
2016-02-15T02:00:00.000Z
当我尝试使用 PHP 格式时,例如:
date('Y-m-d', strtotime($post['date']))
我有:
2016-02-14
当日期回到角度时:
success: function(data) { $scope.date = new Date(data.date); }
我有:
2016-02-13
那么,我做错了什么
[更新]
我把date_default_timezone_set($timezone);
我的 index.php
所以在那之前我在做:
$str = date('d/m/Y', strtotime('+2 day', strtotime($post['date'])));
$workaround = new Date($str);
现在我改为+1天
我猜 php 时区已经解决了其中一个问题。