[php] 유닉스 타임 스탬프가 주어지면 그날의 시작과 끝을 얻는 방법은 무엇입니까?

다음과 같은 Unix 타임 스탬프가 있습니다.

$timestamp=1330581600

해당 타임 스탬프에 대한 하루의 시작과 끝을 어떻게 가져 옵니까?

e.g.
$beginOfDay = Start of Timestamp's Day
$endOfDay = End of Timestamp's Day

나는 이것을 시도했다 :

$endOfDay = $timestamp + (60 * 60 * 23);

하지만 타임 스탬프 자체가 하루의 정확한 시작이 아니기 때문에 작동하지 않을 것이라고 생각합니다.



답변

strtotime은 시간 / 분 / 초를 빠르게 자르는 데 사용할 수 있습니다.

$beginOfDay = strtotime("today", $timestamp);
$endOfDay   = strtotime("tomorrow", $beginOfDay) - 1;

DateTime도 사용할 수 있지만 긴 타임 스탬프에서 가져 오려면 몇 가지 추가 단계가 필요합니다.

$dtNow = new DateTime();
// Set a non-default timezone if needed
$dtNow->setTimezone(new DateTimeZone('Pacific/Chatham'));
$dtNow->setTimestamp($timestamp);

$beginOfDay = clone $dtNow;
$beginOfDay->modify('today');

$endOfDay = clone $beginOfDay;
$endOfDay->modify('tomorrow');
// adjust from the start of next day to the end of the day,
// per original question
// Decremented the second as a long timestamp rather than the
// DateTime object, due to oddities around modifying
// into skipped hours of day-lights-saving.
$endOfDateTimestamp = $endOfDay->getTimestamp();
$endOfDay->setTimestamp($endOfDateTimestamp - 1);

var_dump(
    array(
        'time ' => $dtNow->format('Y-m-d H:i:s e'),
        'start' => $beginOfDay->format('Y-m-d H:i:s e'),
        'end  ' => $endOfDay->format('Y-m-d H:i:s e'),
    )
);

PHP7에 확장 된 시간이 추가됨에 따라 $now <= $end이것으로 검사를 사용하면 1 초를 놓칠 가능성 이 있습니다. $now < $nextStart검사를 사용하면 PHP의 시간 처리에서 초를 빼고 일광 절약을 할 수있는 이상한 점 외에도 그 차이를 피할 수 있습니다.


답변

DateTime 만

$beginOfDay = DateTime::createFromFormat('Y-m-d H:i:s', (new DateTime())->setTimestamp($timestamp)->format('Y-m-d 00:00:00'))->getTimestamp();
$endOfDay = DateTime::createFromFormat('Y-m-d H:i:s', (new DateTime())->setTimestamp($timestamp)->format('Y-m-d 23:59:59'))->getTimestamp();

먼저 DateTime 객체가 생성되고 타임 스탬프가 원하는 타임 스탬프로 설정됩니다. 그런 다음 개체는 시간 / 분 / 초를 하루의 시작 또는 끝으로 설정하는 문자열로 형식이 지정됩니다. 마지막으로이 문자열에서 새 DateTime 객체가 생성되고 타임 스탬프가 검색됩니다.

읽기 가능

$dateTimeObject = new DateTime();
$dateTimeObject->setTimestamp($timestamp);
$beginOfDayString = $dateTimeObject->format('Y-m-d 00:00:00');
$beginOfDayObject = DateTime::createFromFormat('Y-m-d H:i:s', $beginOfDayString);
$beginOfDay = $beginOfDayObject->getTimestamp();

이 더 긴 버전을 사용하여 다른 방법으로 하루를 끝낼 수 있습니다.

$endOfDayObject = clone $beginOfDayOject(); // Cloning because add() and sub() modify the object
$endOfDayObject->add(new DateInterval('P1D'))->sub(new DateInterval('PT1S'));
$endOfDay = $endOfDayOject->getTimestamp();

시간대

시간대는 다음과 같은 형식에 타임 스탬프 표시기를 추가 O하고 DateTime 개체를 만든 후 타임 스탬프를 지정하여 설정할 수도 있습니다 .

$beginOfDay = DateTime::createFromFormat('Y-m-d H:i:s O', (new DateTime())->setTimezone(new DateTimeZone('America/Los_Angeles'))->setTimestamp($timestamp)->format('Y-m-d 00:00:00 O'))->getTimestamp();

DateTime의 유연성

지정된 두 번째 형식을 변경하여 월의 시작 / 종료 또는 시간의 시작 / 종료와 같은 다른 정보를 얻을 수도 있습니다. 월 : 'Y-m-01 00:00:00''Y-m-t 23:59:59'. 시간 : 'Y-m-d H:00:00''Y-m-d H:59:59'

add () / sub () 및 DateInterval 객체와 함께 다양한 형식을 사용하면 모든 기간의 시작 또는 끝을 얻을 수 있지만 윤년을 올바르게 처리하려면 약간의주의가 필요합니다.

관련 링크

PHP 문서에서 :


답변

date()mktime()다음을 조합하여 사용할 수 있습니다 .

list($y,$m,$d) = explode('-', date('Y-m-d', $ts));
$start = mktime(0,0,0,$m,$d,$y);
$end = mktime(0,0,0,$m,$d+1,$y);

mktime() 지정된 달 이외의 날이 주어지면 월 / 년을 포장 할 수있을만큼 똑똑합니다 (1 월 32 일은 2 월 1 일 등).


답변

시간을 현재 데이터로 변환 한 다음 strtotime 함수를 사용하여 하루의 시작을 찾고 24 시간을 추가하여 하루의 끝을 찾을 수 있습니다.

나머지 연산자 (%)를 사용하여 가장 가까운 날짜를 찾을 수도 있습니다. 예를 들면 :

$start_of_day = time() - 86400 + (time() % 86400);
$end_of_day = $start_of_day + 86400;


답변

안타깝게도 매우 구체적인 시나리오에서 발생하는 PHP 버그로 인해 허용되는 답변이 중단됩니다. 이러한 시나리오에 대해 설명하지만 먼저 DateTime을 사용하여 답변합니다. 이것과 허용되는 대답의 유일한 차이점은 다음 // IMPORTANT줄 뒤에 있습니다.

$dtNow = new DateTime();
// Set a non-default timezone if needed
$dtNow->setTimezone(new DateTimeZone('America/Havana'));
$dtNow->setTimestamp($timestamp);

$beginOfDay = clone $dtNow;

// Go to midnight.  ->modify('midnight') does not do this for some reason
$beginOfDay->modify('today');

// now get the beginning of the next day
$endOfDay = clone $beginOfDay;
$endOfDay->modify('tomorrow');

// IMPORTANT
// get the timestamp
$ts = $endOfDay->getTimestamp();
// subtract one from that timestamp
$tsEndOfDay = $ts - 1;

// we now have the timestamp at the end of the day. we can now use that timestamp
// to set our end of day DateTime
$endOfDay->setTimestamp($tsEndOfDay);

따라서 사용하는 대신 ->modify('1 second ago');타임 스탬프를 얻고 하나를 뺍니다. 사용되는 대답 modify 작동하지만 매우 구체적인 시나리오에서 PHP 버그로 인해 중단됩니다. 이 버그는 시계가 “앞으로”이동하는 날 자정에 일광 절약 시간을 변경하는 시간대에서 발생합니다. 다음은 해당 버그를 확인하는 데 사용할 수있는 예입니다.

버그 예제 코드

// a time zone, Cuba, that changes their clocks forward exactly at midnight. on
// the day before they make that change. there are other time zones which do this
$timezone = 'America/Santiago';
$dateString = "2020-09-05";

echo 'the start of the day:<br>';
$dtStartOfDay = clone $dtToday;
$dtStartOfDay->modify('today');
echo $dtStartOfDay->format('Y-m-d H:i:s');
echo ', '.$dtStartOfDay->getTimestamp();

echo '<br><br>the start of the *next* day:<br>';
$dtEndOfDay = clone $dtToday;
$dtEndOfDay->modify('tomorrow');
echo $dtEndOfDay->format('Y-m-d H:i:s');
echo ', '.$dtEndOfDay->getTimestamp();

echo '<br><br>the end of the day, this is incorrect. notice that with ->modify("-1 second") the second does not decrement the timestamp by 1:<br>';
$dtEndOfDayMinusOne = clone $dtEndOfDay;
$dtEndOfDayMinusOne->modify('1 second ago');
echo $dtEndOfDayMinusOne->format('Y-m-d H:i:s');
echo ', '.$dtEndOfDayMinusOne->getTimestamp();

echo '<br><br>the end of the day, this is correct:<br>';
$dtx = clone $dtEndOfDay;
$tsx = $dtx->getTimestamp() - 1;
$dty = clone $dtEndOfDay;
$dty->setTimestamp($tsx);
echo $dty->format('Y-m-d H:i:s');
echo ', '.$tsx;

버그 예제 코드 출력

the start of the day:
2020-03-26 00:00:00, 1585173600

the start of the *next* day:
2020-03-27 01:00:00, 1585260000

the end of the day, this is incorrect. notice that with ->modify("1 second ago") the
second does not decrement the timestamp by 1:
2020-03-27 01:59:59, 1585263599

the end of the day, this is correct:
2020-03-26 23:59:59, 1585259999


답변

오늘 시작 날짜 타임 스탬프입니다. 단순한

$stamp = mktime(0, 0, 0);
echo date('m-d-Y H:i:s',$stamp);


답변

앞으로이 질문이있는 모든 사람을 위해 :

모든 요일 코드

<?php
$date = "2015-04-12 09:20:00";

$midnight = strtotime("midnight", strtotime($date));
$now = strtotime($date);

$diff = $now - $midnight;
echo $diff;
?>

당일 코드

<?php
$midnight = strtotime("midnight");
$now = date('U');

$diff = $now - $midnight;
echo $diff;
?>