<?php echo strtotime(date("Y-m-d 00:00:00", time())); ?>
date_default_timezone_set('PRC'); //기본 시간대
echo "Today:",date("Y-m-d",time()),"
" ;
echo "오늘:",date("Y-m-d",strtotime("18 June 2008")),"
";
echo "어제:",date("Y-m-d",strtotime ( "-1일")), "
"
echo "내일:",date("Y-m-d",strtotime("+1일")), "
"; > echo "1주일 후:",date("Y-m-d",strtotime("+1 week")), "
"
echo "1주일, 2일, 4시간 2초 후: ",date(" 연월일 G:H:s",strtotime("+1주 2일 4시간 2초")), "
";
echo "다음 목요일:",date("Y-m-d",strtotime("다음 목요일")), "
"
echo "지난 월요일:".date("Y-m-d", strtotime( "지난 월요일"))."
";
echo "1개월 전:".date("Y-m-d",strtotime("지난 달"))."
"; echo "1개월 후:".date("Y-m-d",strtotime("+1개월"))."
"
echo "10년 후:".date("Y-m-d", strtotime( "+10년"))."
";
?>
php는 날짜와 오늘 사이의 일수를 결정합니다
코드 복사 코드는 다음과 같습니다.
echo (strtotime('2020-5-20′)-strtotime(date) (“Y-m-d”)))/86400;