1. 程式人生 > >PHP獲取本月起始和終止時間戳

PHP獲取本月起始和終止時間戳

view nbsp log one hide date 技術分享 獲取 clas

技術分享
//獲取本月開始的時間戳
$beginThismonth=mktime(0,0,0,date(‘m‘),1,date(‘Y‘));
//獲取本月結束的時間戳2017/7/31 23:59:59
$endThismonth=mktime(23,59,59,date(‘m‘),date(‘t‘),date(‘Y‘));
View Code

PHP獲取本月起始和終止時間戳