[PHP] 날짜 더하기
strtotime('날짜',"더할 날");
사용 예제
1 2 3 4 5 6 7 8 9 | <?php $today = "2019-01-12"; echo date("Y-m-d", strtotime($today."+1years"))."<BR>"; echo date("Y-m-d", strtotime($today."+1day"))."<BR>"; echo date("Y-m-d", strtotime($today."+1 week"))."<BR>"; echo date("Y-m-d", strtotime($today."+24 hours"))."<BR>"; echo date("Y-m-d", strtotime($today."+1500 minutes")); ?> | cs |
출력값
2020-01-12
2019-01-132019-01-19
2019-01-13
2019-01-13
'공부하자 > PHP' 카테고리의 다른 글
카카오 error="invalid_grant", error_description="Invalid redirect: (0) | 2019.01.16 |
---|---|
[PHP] 배열 초기화 하기 (0) | 2019.01.14 |
[PHP] 함수 만들기 (0) | 2019.01.09 |
[PHP] 랜덤 난수 생성하기 (2) | 2019.01.09 |
[PHP] 배열 중복값 개수 확인하기 (0) | 2019.01.09 |