-3
可能重複:
Getting the difference between two time/dates using php?AM PM格式的兩個日期變量之間的日期差異。
我有兩個日期變量 設$ = arrival_time的 「7:30」; $ departure_time =「8.30 PM」;
那麼我怎樣才能計算這兩個變量之間的時差?
可能重複:
Getting the difference between two time/dates using php?AM PM格式的兩個日期變量之間的日期差異。
我有兩個日期變量 設$ = arrival_time的 「7:30」; $ departure_time =「8.30 PM」;
那麼我怎樣才能計算這兩個變量之間的時差?
<?php
$arrival_time="7.30 AM";
$departure_time="8.30 PM";
$d1= strtotime($arrival_time);
$d2= strtotime($departure_time);
$diff=$d2-$d1;
//Print the difference in hours : minutes
echo date("H:i",$diff);
?>
<?php
$am = "7:30AM";
$pm = "8:30PM";
$minutes_diff = round(abs(strtotime($pm) - strtotime($am))/60);