Maison > Article > développement back-end > php获取前一天,前一个月,前一年的时间
获取前一天的时间:
$mytime= date("Y-m-d H:i:s", strtotime("-1 day"));
$mytime= date("Y-m-d H:i:s", strtotime("-3 day"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 month"));
$mytime= date("Y-m-d H:i:s", strtotime("-3 month"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 hour"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 year"));