728x90
반응형
■ PHP 날짜 계산 date()
■ 사용법
<?
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("1 September 2021")); // 2021년 9월 1일
?>
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP] 특수문자 제거 정규식 preg_replace() (4) | 2021.07.14 |
---|---|
[PHP] DB 데이터 CSV 파일 저장 (한글깨짐) (0) | 2021.07.08 |
[PHP] 조건문 switch case 문 (1) | 2021.05.25 |
[PHP] $_SERVER 함수 (서버함수) (1) | 2021.05.24 |
[PHP] 접속자 IP 주소 체크 (1) | 2021.05.24 |