0
如何使用php在給定的月份中獲取本週的第一天和最後一天。我試圖通過谷歌搜索來獲得答案,但並非爲了獲得答案。請幫助我的任何機構。我會爲他而努力。如何使用php在給定的月份中獲得本週的第一天和最後一天使用php
如何使用php在給定的月份中獲取本週的第一天和最後一天。我試圖通過谷歌搜索來獲得答案,但並非爲了獲得答案。請幫助我的任何機構。我會爲他而努力。如何使用php在給定的月份中獲得本週的第一天和最後一天使用php
嗨每個身體一些如何得到解決方案,它在下面給出。 (「M」)。「」.date('Y')。「」));第一個星期日。 $ weekArray = getfstlastdayOfWeekofmonth($ fstSunday); echo'
';
print_r($weekArray);
function getfstlastdayOfWeekofmonth($paramFstSundayofMonth)
{
$fstSunday = $paramFstSundayofMonth;
//echo 'last date of the week-'.$oneWeekLater = date('d-m-Y', strtotime('+1 week',strtotime($fstSunday)));
$countMnth = date("t",strtotime($fstSunday));
$dayOfmonth = date("d",strtotime($fstSunday));
if($countMnth==31 && $dayOfmonth <= 3)
$countmonth = 5;
else
$countmonth = 4;
$weekArray = array();
for($i=0;$i<$countmonth;$i++)
{
$oneWeekLater = date('d-F-Y', strtotime('+1 week',strtotime($fstSunday)-1));
$weekArray[] = array('fstdayWeekOfmonth'=> $fstSunday,'lastDayWeekOfmonth'=>$oneWeekLater) ;
$fstSunday = date('d-F-Y', strtotime('+1 week',strtotime($fstSunday)));
}
// echo '<pre>';
return $weekArray;
}
最後一天http://stackoverflow.com/questions/1686724/how-to-find-the-last-day-of-the-month-from-date – Ghost