PHP获取昨天、今天及明天日期的方法

本文实例讲述了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程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/090d5c2ecf1e16471094018605062578.html