#當前時間戳 2020-01-16 15:50:15
echo date
('y-m-d h:i:s'
,strtotime
('now'))
;#當前時間戳+1秒 2020-01-16 15:50:16
echo date
('y-m-d h:i:s'
,strtotime
('+1second'))
;#當前時間戳+1分 2020-01-16 15:51:15
echo date
('y-m-d h:i:s'
,strtotime
('+1minute'))
;#當前時間戳+1小時 2020-01-16 16:50:15
echo date
('y-m-d h:i:s'
,strtotime
('+1hour'))
;#當前時間戳+1天 2020-01-17 15:50:15
echo date
('y-m-d h:i:s'
,strtotime
('+1day'))
;#當前時間戳+1周 2020-01-23 15:50:15
echo date
('y-m-d h:i:s'
,strtotime
('+1week'))
;#當前時間戳+1月 2020-02-16 15:50:15
echo date
('y-m-d h:i:s'
,strtotime
('+1month'))
;#當前時間戳+1年 2021-01-16 15:50:15
echo date
('y-m-d h:i:s'
,strtotime
('+1year'))
;#當前時間戳+12年,12月,12天,12小時,12分,12秒 2033-01-29 04:02:27
一天一學,一天一記
今天解決了程式卡住不動的問題 通過設定urllib2.urlopen url,none,time out 中time out的值,來排除連線超時的錯誤。time out x try data data為遞交表單 req urllib2.request url,data res urllib2.url...
如何將Oracle 當前日期加一天 一分鐘
在oralce中我發現有add months函式,加天數n可以用如下方法實現,select sysdate n from dual 在oralce中我發現有add months函式,加天數n可以用如下方法實現,select sysdate n from dual sysdate 1 加一天 sysd...
mysql獲取當前時間,前一天,後一天
負責的專案中,使用的是mysql資料庫,頁面上要顯示當天所註冊人數的數量,獲取當前的年月日,我使用的是 curdate 錯誤的sql語句 eg select count from user where registerdate curdate and registerdate curdate 1 雖...