strtotime() 

³¯Â¥°ü·Ã ÇÔ¼ö Áß¿¡ Çϳª.. ^^
$time = time(); 
echo date("Y-m-d",strtotime("-1 day", $time))." ÇÏ·ç Àü(¾îÁ¦)"; 
echo date("Y-m-d",strtotime("-1 day", $time))." ÇÏ·ç Àü(¾îÁ¦)<br>"; 
echo date("Y-m-d",strtotime("now", $time))." ÇöÀç<br>";
echo date("Y-m-d",strtotime("+1 day", $time))." ÇÏ·ç ÈÄ(³»ÀÏ)<br>"; 
echo date("Y-m-d",strtotime("+1 week", $time))." ÀÏÁÖÀÏ ÈÄ<br>"; 
echo date("Y-m-d",strtotime("-1 month", $time))." ÇÑ´Þ Àü<br>";
echo date("Y-m-d",strtotime("+1 month", $time))." ´ÙÀ½´Þ<br>"; 
echo date("Y-m-d",strtotime("+6 month", $time))." 6´ÞÈÄ<br>"; 
echo date("Y-m-d",strtotime("+12 month", $time))." 12´ÞÈÄ<br>"; 
echo date("Y-m-d",strtotime("next Thursday", $time))." ´ÙÀ½ÁÖ ¸ñ¿äÀÏ<br>"; 
echo date("Y-m-d",strtotime("last Monday", $time))." Áö³­ ¿ù¿äÀÏ<br>"; 
echo date("Y-m-d",strtotime("10 September 2000", $time))." 2000³â 9¿ù 10ÀÏ <br>";  

µüÈ÷ ¸Ó¶ó ÇÒ²¨ ¾øÀÌ º¼¼ö ÀÖÀ½..¤»¤»