Copy CodeThe code is as follows:
/**
* Gets the start date and end date of the month on which the specified date is located
* @param string $date
* @param Boolean to True returns the start date, otherwise returns the end date
* @return Array
* @access Private
*/
Private Function Getmonthrange ($date, $returnFirstDay = True) {
$timestamp = Strtotime ($date);
if ($returnFirstDay) {
$monthFirstDay = Date (' Y-m-1 00:00:00 ', $timestamp);
return $monthFirstDay;
} else {
$mdays = date (' t ', $timestamp);
$monthLastDay = Date (' y-m-'. $mdays. ' 23:59:59 ', $timestamp);
return $monthLastDay;
}
}
http://www.bkjia.com/PHPjc/328099.html www.bkjia.com true http://www.bkjia.com/PHPjc/328099.html techarticle Copy the code as follows:/** * Gets the start date and end date for the month of the specified date * @param string $date * @param Boolean to True returns the start date, otherwise returns the end date ...