개발자의 끄적끄적

[php] strtotime 으로 한달뒤의 날짜 구하기 본문

개발/php

[php] strtotime 으로 한달뒤의 날짜 구하기

효벨 2020. 12. 17. 01:00
728x90
반응형

[php] strtotime 으로 한달뒤의 날짜 구하기 

 

 

php 에서

 

현재날짜 혹은 특정날짜로부터

 

한달뒤의 날짜를 계산하는 경우가 있습니다.

 

그럴때 아래 예제 처럼 하시면 됩니다!

 

$now_month = "2020-01-01";
$next_month = strtotime("+1 months", strtotime($now_month);

 

strtotime 에 "+1 months" 를 해주면

 

뒤에 입력받은 날짜를 기준으로 한달이 더해진 값이 들어있게 됩니다.

 

$next_month 에 담긴 값은 timestamp 값이므로

 

date("Y-m-d", $next_month) 로

 

출력해보면

 

2020-02-01 이 출력될껍니다!

 

참고들 하세요!

 

반응형
Comments