雖然基本的寫法可以有很多,例如可以使用UNIX TIMESTAMP以計算秒數差來獲得日期,但是PHP有自帶的strtotime()函數還是相當便利的。
date("Y/m/d"); // 今天 date("Y/m/d",strtotime("-10 day")); // 10日前 date("Y/m/d",strtotime("-2 week")); // 2星期前 date("Y/m/d",strtotime("-2 month")); // 2個月前 date("Y/m/d",strtotime("-5 year")); // 5年前 date("Y/m/d",strtotime("+10 day")); // 10日後 date("Y/m/d",strtotime("+2 week")); // 2星期後 date("Y/m/d",strtotime("+2 month")); // 2個月後 date("Y/m/d",strtotime("+5 year")); // 5年後