PHP 날짜 및 시간 계산 (하루, 일주일, 한달, 다음달,1년 )
PHP 날짜 계산 정리 $time = time(); echo date("Y-m-d",strtotime("-1 day", $time))." 하루 전(어제)"; echo date("Y-m-d",strtotime("-1 day", $time))." 하루 전(어제)"; echo date("Y-m-d",strtotime("now", $time))." 현재"; echo date("Y-m-d",strtotime("+1 day", $time))." 하루 후(내일)"; echo date("Y-m-d",strtotime("+1 week", $time))." 일주일 후"; echo date("Y-m-d",strtotime("-1 month", $time))." 한달 전"; echo date("Y-m-d",strtotime(..