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")) ;直接獲得前一天時間
上一篇什么瀏覽器支持PHP