0
我有一個數組的月份數,並把它放在一個變量。
現在我想用月份在月份的開始或結尾製作整個日期戳。
但是對於我的生活,我無法弄清楚如何做到這一點。PHP只有得到一個月需要整個時間戳
$startmonth = date("m", strtotime($date[1]));
$endmonth= date("m", strtotime($date[3]));
起始日期變量應該是這樣的:2015年6月1日
的結束日期變量應該是這樣的:2015年7月30日本月
'$ startmonth = date(「Ymd」,strtotime(date('Y')。' - '。$ date [1]。'-01'));' –
rtfm:http://php.net /日期你只得到一個月,因爲你告訴PHP你只需要一個月。如果你想要更多,那麼告訴php你更想要什麼。 –