我在PHP中減去時間有問題。扣減時間PHP
我的時間是:
$行[ 'EXP'] = 2017年3月31日
和日期( 'YM-d') = 2017年3月10日(今天)
$datetime1 = strtotime($row['exp']);
$datetime2 = strtotime(date('Y-m-d'));
$secs = $datetime1 - $datetime2;// == <seconds between the two times>
$days = $secs/86400;
echo $days;
我的結果是:
36520.958333333333
除了以下ID的答案也考慮 「低碳」 如果你的將要配發的處理時間和日期 - HTTP://碳.nesbot.com/docs/ – ATechGuy
@keaner謝謝你,這很有趣! – NicePersonsLiveMore
沒問題,我用它分配,它的工作奇蹟 – ATechGuy