Home  >  Article  >  Backend Development  >  php code to get the first and last day of a month_PHP tutorial

php code to get the first and last day of a month_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:37:32707browse

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 );
}

www.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...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn