标签:audio strtotime div isp 时间 one span day date
获取前一天的时间:
date("Y-m-d H:i:s", strtotime("-1 day"));
获取三天前的时间:
date("Y-m-d H:i:s", strtotime("-3 day"));
获取前一个月的时间:
date("Y-m-d H:i:s", strtotime("-1 month"));
获取前3个月的时间:
date("Y-m-d H:i:s", strtotime("-3 month"));
获取前一个小时的时间:
date("Y-m-d H:i:s", strtotime("-1 hour"));
获取前一年的时间:
date("Y-m-d H:i:s", strtotime("-1 year"));
标签:audio strtotime div isp 时间 one span day date
原文地址:https://www.cnblogs.com/two-bees/p/10794512.html