PHP獲取昨天,今天,近七天的開始結束時間戳

2021-10-07 10:45:21 字數 1037 閱讀 1034

昨天開始結束的時間戳:

$start_time =

strtotime

(date

("y-m-d"

,strtotime

("-1 day"))

);$ends_time =

strtotime

(date

("y-m-d"

,strtotime

("-1 day"))

)+86399

;

今天開始結束時間戳:
$start_time =

strtotime

(date

("y-m-d"

,time()

)); $ends_time =

strtotime

(date

("y-m-d"

,time()

))+86399

;

近七天開始結束時間戳(到當前時間結束):
$start_time =

strtotime

(date

("y-m-d"

,strtotime

("-7 day"))

);$ends_time =

time()

;

當然還有很多方法可以實現想要的效果,比如mktime()函式等,舉個例子:

昨天開始結束的時間戳:

$start_time  =

mktime(0

,0,0

,date

('m'),

date

('d')-

1,date

('y'))

; $ends_time =

mktime(23

,59,59

,date

('m'),

date

('d')-

1,date

('y'))

;

sql語句查詢昨天,今天,最近七天,最近三十天資料

今天的所有資料 select from 表名 where to days 時間欄位名 to days now 昨天的所有資料 select from 表名 where to days now to days 時間欄位名 1 7天內的所有資料 select from 表名 where date sub...

sql查詢今天,昨天,七天,三十天內的資料

今天有個需求需要從查詢當天所有的資料,就去網上搜了一下,並把其他幾個通過時間條件查詢也記錄下來 1.查詢今天所有的資料 select from customer loan where datediff dd,datetime型別字段,getdate 0 2.查詢昨天的所有資料 select from...

獲取當天,昨天,近7天,近30天的起始時間戳

param type param string startdate param string enddate return array notes 獲取當天,昨天,近7天,近30天的起始時間戳 time 2020 12 25 15 12 author xinhua.zhi function getd...