<?php
//13點代表[13,14) from_unixtime unix_timestamp
date_default_timezone_set('prc');
echo strtotime(date('y-m-d h:00:00')); //當時之初
echo strtotime(date('y-m-d h:59:59')); //當時之末
echo strtotime(date('y-m-d 00:00:00')); //當日之初
echo strtotime(date('y-m-d 23:59:59')); //當日之末
//獲得任意一天的開始時間,結束時間
function getdaybe($day)
//獲得任意乙個星期的開始時間,結束時間
function getweekbe($day)
//獲得任意乙個月的開始時間,結束時間
function getmonthbe($day)
print_r(getdaybe('2016-10-10'));.
print_r(getweekbe('2016-10-20'));
print_r(getmonthbe('2012-05-2'));
js獲得本週下週上週的開始結束時間
時間 var now new date 當前日期 var nowdayofweek now.getday 今天本週的第幾天 var nowday now.getdate 當前日 var nowmonth now.getmonth 當前月 var nowyear now.getyear 當前年 now...
獲取某年某月每週的開始時間和結束時間
獲取某年某月每週的開始時間和結束時間 function getinfo year,month let d new date what day is first day d.setfullyear year,month 1,1 let w1 d.getday 某月的第一天是星期幾 console.lo...
獲取某年某月某日的時間開始結束時間
time time year date y 今年 month date m 這個月 day date d 今天 today begin strtotime date y m d time 今天開始時間 today end mktime 23 59,59 month day year 今天結束時間 6...