Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
開始時刻から終了時刻までの合計時間を取得するにはどうすればよいですか。
$start_time = '11:00:00 PM'; // as of 07/08/2013 $end_time = '01:00:00 AM'; // as of 08/08/2013
次に、出力は次のようになります。
$total = '02:00:00'; // 12 hour format
日付文字列を時間値に変換し、減算して 2 つの差を秒で取得し、単純に 3600 で割って差を時間で取得できます。
$t1 = strtotime('2013-08-07 23:00:00'); $t2 = strtotime('2013-08-08 01:00:00'); $differenceInSeconds = $t2 - $t1; $differenceInHours = $differenceInSeconds / 3600;