本文實例講述了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程式設計有幫助。
以上就介紹了PHP取得昨天、今天及明天日期的方法,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。