영원한사랑

 
타임스탬프 값이나 데이트 형식...

strtotime() 이라는 함수가 있습니다.
요건 텍스트를 타임스템프로 바꿔주는데요...
무척 신기한 넘 입니다..ㅋㅋ

date("Y-m-d",strtotime("2007-10-02 +90 day"));
date("Y-m-d",strtotime("2007-10-02 +2 month"));
date("Y-m-d",strtotime("2007-10-02 +1 year"));

데이트 형식이라면 그대로 적용하고, 타임스템프 값이라면..
date(Y)."-".date(m)."-".date(d); // 2007-10-02

특정일자를 간단하게 구해줍니다...

한번해보세요..^^