PHP - 현재 날짜 가지고 오기 등 날짜 시간 관련
웹 프로그래밍/PHP, Ubuntu, Linux2023. 4. 28. 20:52
300x250
현재 날짜 가지고 오기
$today = date("Y-m-d",time());
1달전 날짜 가지고오기
$day = date('Y-m-d', strtotime('-1 month'));
그외 날짜
date("Y-m-d", time()); //오늘
date("Y-m-d", strtotime("-1 week", time())); //최근 일주일
date("Y-m-d", strtotime("-1 month", time())); //최근 1개월
date("Y-m-d", strtotime("-6 month", time())); //최근 6개월
date("Y-m-d", strtotime("-1 year", time())); //최근 1년
응용 ( 6개월전 을 구한다음 하루 뺴기)
$limit_dt = date( 'Y-m-d', strtotime('-1 days', strtotime('-6 month', time())) );
300x250
'웹 프로그래밍 > PHP, Ubuntu, Linux' 카테고리의 다른 글
ubuntu ffmpeg 썸네일 이미지 저장 (0) | 2023.07.30 |
---|---|
php - ubuntu 동영상 썸네일 (0) | 2022.12.24 |
Javascript <-> PHP 인코드 디코드 (0) | 2022.12.24 |
우분투 - crontab (작업 스케쥴러) 사용법 (0) | 2022.09.18 |
php - date(날짜시간), strtotime(시간 더하기 빼기) (0) | 2022.09.17 |
댓글()