php獲取前一個小時的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-1 hour"));
php獲取前一天的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-1 day"));
php獲取三天前的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-3 day"));
php獲取前一個月的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-1 month"));
php獲取三個月前的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-3 month"));
php獲取前一年的時間:
$mtime= date("Y-m-d H:i:s", strtotime("-1 year"));