如何利用php获取当前具体日期时间?
使用date函数。date ( string $format [, int $timestamp ] )返回将整数 timestamp 按照给定的格式字串而产生的字符串。如果没有给出时间戳则返回本地当前时间。
php里获取前一天的时间?
//获得当前时间
//date()格式化时间返回String类型。 date("Y-m-d H:i:s")
$current_date = date(’Y-m-d’,time());
//根据当前时间加一周后
$weekLater = date(’Y-m-d’,strtotime("$current_date + 1 week"));
echo $weekLate;
// 2009-05-26 加一天的日期
$tomorrow = date(’Y-m-d’,strtotime("2009-05-26 + 1 day"));
echo $tomorrow; // 2009-05-27
也可以这样 date("Y-m-d",strtotime("-1 day")) ;直接获得前一天时间
0