本文实例讲述了PHP获取昨天、今天及明天日期的方法。分享给大家供大家参考,具体如下:
rush:PHP;">
//PHP返回昨天的日期
function get_last_date() {
$tomorrow = mktime(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,date("d")+1,$tomorrow);
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》及《PHP面向对象程序设计入门教程》
希望本文所述对大家PHP程序设计有所帮助。