这是一个使问题清楚的示例。以下两个示例都给出了错误的区别:
// gives 86398 while the correct is 2sec
$diff_in_sec = strtotime('23:59:59') - strtotime('00:00:01');
// again gives 86398 while the correct is 2sec.
$diff_in_sec = Carbon::parse('00:00:01')->diffInSeconds(Carbon::parse('23:59:59'));
我想要的是23:59:59compared with00:00:01返回 2 秒的差异,和 00:00:01compare with 23:59:59。
海绵宝宝撒
Smart猫小萌