Copy code The code is as follows:
function getthemonth($date)
{
$firstday = date('Y-m- 01', strtotime($date));
$lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day"));
return array($firstday, $lastday );
}
http://www.bkjia.com/PHPjc/321922.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321922.htmlTechArticleCopy the code The code is as follows: function getthemonth($date) { $firstday = date('Y-m-01', strtotime ($date)); $lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day")); return arra...