날짜 계산
$time = 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("+1 month", $time))." 다음달 echo date("Y-m-d",strtotime("next Thursday", $time))." 다..
2015. 1. 30.