hanker

PHP - 현재 날짜 가져오기 본문

PHP

PHP - 현재 날짜 가져오기

hanker 2020. 12. 21. 14:36
반응형
//현재 연도 4자리
$thisYear = date("Y");
//ex) 2020

//현재 연도 2자리
$thisYear = date("y");
//ex) 20

//현재 월 (0포함 2자리)
$thisMonth = date("m");
//ex) 01 ~ 12

//현재 월 (0제외)
$thisMonth = date("n");
//ex) 1 ~ 12

//현재 일 (0포함 2자리)
$thisDay = date("d");
//ex) 01 ~ 31

//현재 일 (0제외)
$thisDay = date("j");
//ex) 1 ~ 31

 

반응형