本文實例講述了PHP獲取昨天、今天及明天日期的方法。分享給大家供大家參考,具體如下:
//PHP返回昨天的日期 function get_last_date() { $tomorrow = mktime(0,0,0,date("m"),date("d")-1,date("Y")); return date("Y-m-d", $tomorrow); } //PHP返回今天的日期 function get_today_date() { $today=date("Y-m-d"); return today; } //PHP返回明天的日期 function get_tomorrow_date() { $tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y")); return date("Y-m-d", $tomorrow); }
更多關於php相關內容感興趣的讀者可查看本站專題:《php日期與時間用法總結》、《php常用函數與技巧總結》及《php面向對象程序設計入門教程》
希望本文所述對大家PHP程序設計有所幫助。