일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- php
- ubuntu
- devops
- Gradle
- JVM
- elasticsearch
- Spring Batch
- Design Patterns
- 맛집
- Git
- MySQL
- linux
- db
- laravel
- Oracle
- jsp
- AWS
- Web Server
- Spring
- redis
- java
- jenkins
- it
- javascript
- Spring Boot
- IntelliJ
- tool
- springboot
- 요리
- ReactJS
Archives
- Today
- Total
아무거나
날짜 계산 본문
반응형
# php 날짜 계산
date("Y-m-d H:i:s", strtotime("-1 day")); // 어제
date("Y-m-d H:i:s", strtotime("now")); // 현재
date("Y-m-d H:i:s", strtotime("+1 day")); // 내일
date("Y-m-d H:i:s", strtotime("+1 week")); // 일주일 후
date("Y-m-d H:i:s", strtotime("-1 month")); // 한달 전
date("Y-m-d H:i:s", strtotime("+1 month")); // 다음달
date("Y-m-d H:i:s", strtotime("+1 week 2 days 3 hours 4 seconds")); // 1주 2일 3시간 4초 후
date("Y-m-d H:i:s", strtotime("next Thursday")); // 다음주 목요일
date("Y-m-d H:i:s", strtotime("last Monday")); // 지난 월요일
date("Y-m-d H:i:s", strtotime("10 September 2013")); // 2013년 9월 10일
반응형
'PHP > PHP' 카테고리의 다른 글
배열의 교집합 추출 (0) | 2019.04.08 |
---|---|
배열 차이 계산 (0) | 2019.04.08 |
문자열중 마지막 문자 자르기 (0) | 2019.04.03 |
클로저(clouser) (1) | 2019.04.03 |
PHP7 기준 빈 객체 생성 방법 (0) | 2019.04.02 |
Comments