我有这种格式的日期:" 28.03.2014"。 所以DD-MM-YYYY。
如何计算自此日期起的天数?
我发现了另一个问题,其中接受的答案很长,日期也是另一种格式。
$now = time(); // or your date as well
$your_date = strtotime("2010-01-01");
$datediff = $now - $your_date;
echo floor($datediff/(60*60*24));
这仍然是处理事情的方式吗?我是否必须重新格式化日期以适应strtotime?
答案 0 :(得分:0)
我在我的作曲家项目中使用Carbon用于此目的和类似目的。
这就像这样容易:
$dt = Carbon::parse('2010-01-01');
echo $dt->diffInDays(Carbon::now());