본문 바로가기

프로그래밍/PHP

날짜를 타임스탬프 형식으로 변환해서 날짜 계산하기.

날짜를 기본 2018-10-22 형식으로 불러오고

그 형식에 맞춰서 날짜를 timestamp 형식으로 변환후 1달전 날짜 구하기




$search_start_choice_date = date('2018-10-22'); //
$search_start_choice_timestamp = strtotime($search_start_choice_date); // first date's timestamp

$prev_month = strtotime('-1 month', $search_start_choice_timestamp);
$prev_month_start = date('Y-m-d', $prev_month);


$prev_month_start의 값은 2018-09-22 가 출력됩니다.