php返回日期的实例(明天的日期、今天的日期、昨天的日期)

发布时间:2019-08-27编辑:脚本学堂
本文介绍下,php返回日期的几个例子,分别是返回明天的日期、今天的日期、昨天的日期。有需要的朋友,参考下吧。

1,PHP返回明天的日期
代码:

<?php
function get_tomorrow_date() {
 $tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
 return date("Y-m-d", $tomorrow);
} //by www.jb200.com
?>

2,PHP返回今天的日期

<?php
function get_today_date() {
 $today=date("Y-m-d");
 return today;
} //by www.jb200.com
?>

3,PHP返回昨天的日期

<?php
function get_last_date() {
 $tomorrow = mktime(0,0,0,date("m"),date("d")-1,date("Y"));
 return date("Y-m-d", $tomorrow);
} //by www.jb200.com
?>

说明:以上主要是php中日期函数的具体应用,希望对大家有所帮助。