PHPで時間分秒形式でstart_dateとend_dateの間の期間を取得する方法は?
$start_date=2012-03-23 11:58:14 and $end_date=2012-03-24 11:54:29
PHPで時間分秒形式でstart_dateとend_dateの間の期間を取得する方法は?
$start_date=2012-03-23 11:58:14 and $end_date=2012-03-24 11:54:29
使用DateTime
クラス:
$start_date = new DateTime('2012-03-23 11:58:14');
$end_date = new DateTime('2012-03-24 11:54:29');
$dd = date_diff($end_date, $start_date);
使用時間$dd->h
、分 - $dd->i
、秒 -を取得し$dd->s
ます。
echo "Hours = $dd->h, Minutes = $dd->i, Seconds = $dd->s";
私は...するだろう
$start_time = strtotime($start_date);
$end_time = strtotime($end_date);
$difference = $end_time - $start_time;
echo date('H:i:s', $difference);
編集
時差が 1 日未満であると仮定して誤りを犯したため、時差が 1 日より大きい場合、時間:分:秒のみが表示されますが、これはおそらく必要なものではありません (これは無視してください)
だから私は今
$seconds = $difference % 60; //seconds
$difference = floor($difference / 60);
$min = $difference % 60; // min
$difference = floor($difference / 60);
$hours = $difference; //hours
echo "$hours : $min : $seconds";
訂正すみません
この機能が役立ちます
function datediff($interval, $datefrom, $dateto, $using_timestamps = false) {
/*
$interval can be:
yyyy - Number of full years
q - Number of full quarters
m - Number of full months
y - Difference between day numbers
(eg 1st Jan 2004 is "1", the first day. 2nd Feb 2003 is "33". The datediff is "-32".)
d - Number of full days
w - Number of full weekdays
ww - Number of full weeks
h - Number of full hours
n - Number of full minutes
s - Number of full seconds (default)
*/
ここで動作することを確認してください:http://codepad.viper-7.com/FPuOks
$start_date="2012-03-22 11:58:14";
$end_date="2012-03-24 11:54:29";
$start_time = strtotime($start_date);
$end_time = strtotime($end_date);
$difference = $end_time - $start_time;
echo sprintf("%02d%s%02d%s%02d", floor($difference/3600), ':', ($difference/60)%60, ':', $difference%60); // outputs 47:56:15