在當前時間上增加幾天或者減少幾天

2021-07-12 07:22:34 字數 610 閱讀 7278

<?php

//字串轉成日期的函式 

$t = "2012-10-11 17:27:00";  // 當前時間戳

//$nowtime = strtotime('2012-10-11 16:30:00'); 

$nowtime = strtotime($t);

//$t = time(); // 當前時間戳

//$t = strtotime("+30 days", time()); // 30天後的時間

//echo date("y-m-d", strtotime("+30 days", time())); // 格式化日期

echo date("y-m-d", strtotime("+30 days", 

$nowtime

)); // 格式化日期

輸出格式:2012-09-19

減少幾小時

//echo date("y-m-d h:i:s", strtotime("-1 hour", time())); // 格式化日期

echo date("y-m-d h:i:s", strtotime("-1 hour", 

$nowtime

)); // 格式化日期

Python 如何計算當前時間減少或增加乙個月

今天在之前的 中發現了乙個bug,有個計算當前時間減少乙個月的函式,其報出下面的異常資訊 valueerror day is out of range for month看一下 import datatime def last month now time last month now time.m...

如何在當前時期上加幾年幾個月幾天幾小時幾分幾秒

在日期時間上加1秒 select to date 2008 05 16 18 05 55 yyyy mm dd hh24 mi ss 1 24 60 60 from dual 結果 2008 5 16 18 05 56 在日期時間上加1分 select to date 2008 05 16 18 0...

獲取當前時間 以及幾天前, 幾天後的時間方法

js獲取當前時間方法 時間格式均為yyyy mm dd 獲取當前時間方法 function getnowtime if strdate 0 strdate 9 var currentdate year seperator1 month seperator1 strdate return curren...