PHP에서 날짜 간의 시간 차이 계산
"Y-m-d H:i:s"로 표시된 두 날짜를 비교할 때 시간 차이를 결정합니다. 그들 사이에는 공통 요구 사항이 있습니다. PHP에서 이를 달성하는 방법은 다음과 같습니다.
타임스탬프로 변환
첫 번째 단계는 두 날짜를 Unix 타임스탬프로 변환하는 것입니다. 이는 Unix 타임스탬프로 변환된 시간입니다. 신기원(1970년 1월 1일 00:00:00 UTC). 이 작업은 strtotime() 함수를 사용하여 수행할 수 있습니다.
<code class="php">$timestamp1 = strtotime($time1); $timestamp2 = strtotime($time2);</code>
시간 차이 계산
타임스탬프가 있으면 이를 빼서 차이를 얻을 수 있습니다. 초:
<code class="php">$seconds_difference = $timestamp1 - $timestamp2;</code>
한 시간은 3600초이므로 이것을 시간으로 변환하려면 3600으로 나눕니다.
<code class="php">$hour_difference = round($seconds_difference / 3600, 1);</code>
round() 함수는 소수 자릿수가 많습니다.
사용 예
두 개의 날짜가 있다고 가정해 보겠습니다.
<code class="php">$time1 = "2023-05-25 15:30:15"; $time2 = "2023-05-26 09:45:30";</code>
위 코드 사용:
<code class="php">$timestamp1 = strtotime($time1); $timestamp2 = strtotime($time2); $seconds_difference = $timestamp1 - $timestamp2; $hour_difference = round($seconds_difference / 3600, 1); echo "Hour difference: $hour_difference hours";</code>
이 결과는 다음과 같습니다.
Hour difference: 17.5 hours
위 내용은 PHP에서 두 날짜 사이의 시간 차이를 계산하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!