개발자의 끄적끄적

[php] php 날짜 계산 본문

개발/php

[php] php 날짜 계산

효벨 2019. 10. 24. 03:00
728x90
반응형

[php] php 날짜 계산

date("Y-m-d", strtotime("-1 day"))  // 현재시간부터 1 주일 전
date("Y-m-d", strtotime("-1 week"))  // 현재시간부터 1 주일 전
date("Y-m-d", strtotime("-1 month"))  // 현재시간부터 1 개월 전
date("Y-m-d", strtotime("-3 month"))  // 현재시간부터 1 개월 전
date("Y-m-d", strtotime("-6 months"))  // 현재시간부터 6 개월 전
date("Y-m-d", strtotime("+6 months"))  // 현재시간부터 6 개월 후
date("Y-m-d", strtotime("+1 years"))  // 현재시간부터 1 년 후

제가 평소에 자주 사용하던 부분만 정리해서 올렸습니다.

 

이걸 응용하시면 검색창 기간 검색에 활용이 많이 되실껍니당!

 

참고하세용!

반응형
Comments