일반적으로 일련의 문자인 타임스탬프는 특정 순간을 고유하게 식별합니다. 디지털 타임스탬프 기술은 디지털 서명 기술의 변형입니다. 시간은 PHP에서도 매우 중요한 요구 사항입니다. 이 기사에서는 PHP가 두 타임스탬프 간의 일, 시, 분, 초 차이를 계산하는 두 가지 방법에 대해 주로 설명합니다.
추천 매뉴얼: php 완전 자습 매뉴얼
첫 번째 유형:
/** * 计算两个时间戳之间相差的日时分秒 * @param $unixTime_1 开始时间戳 * @param $unixTime_2 结束时间戳 * @return array */ function timeDiff($unixTime_1, $unixTime_2) { $timediff = abs($unixTime_2 - $unixTime_1); //计算天数 $days = intval($timediff / 86400); //计算小时数 $remain = $timediff % 86400; $hours = intval($remain / 3600); //计算分钟数 $remain = $remain % 3600; $mins = intval($remain / 60); //计算秒数 $secs = $remain % 60; return ['day' => $days, 'hour' => $hours, 'min' => $mins, 'sec' => $secs]; } //Array ( // [day] => 1 // [hour] => 0 // [min] => 3 // [sec] => 31 //)
추천 관련 글:
1.php 날짜 및 시간 연산에 대한 내용
관련 영상 추천 :
1.Dugu Jiujian (4)_PHP video tutorial
두 번째 유형 :
/** * 计算两个时间戳之间相差的日时分秒 * @param $date1 开始时间 * @param $date2 结束时间 * @return array */ function diffDate($date1, $date2) { $datetime1 = new \DateTime($date1); $datetime2 = new \DateTime($date2); $interval = $datetime1->diff($datetime2); $time['year'] = $interval->format('%Y'); $time['month'] = $interval->format('%m'); $time['day'] = $interval->format('%d'); $time['hour'] = $interval->format('%H'); $time['min'] = $interval->format('%i'); $time['sec'] = $interval->format('%s'); $time['days'] = $interval->format('%a'); // 两个时间相差总天数 return $time; } //Array ( // [year] => 00 // [month] => 1 // [day] => 2 // [hour] => 00 // [min] => 3 // [sec] => 31 // [days] => 33 //)
위는 PHP 계산입니다. 두 타임스탬프 사이의 일, 시간, 분, 초의 차이를 계산하는 두 가지 방법이 모두에게 도움이 되기를 바랍니다.
관련 추천:
PHP가 작동하는 최대 시간은 얼마입니까? 타임스탬프를 표현할 수 있는 방법과 해결 방법
위 내용은 PHP에서 두 타임스탬프의 차이를 계산하는 두 가지 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!