Maison  >  Article  >  développement back-end  >  php 获取本月第一天与最后一天的代码

php 获取本月第一天与最后一天的代码

WBOY
WBOYoriginal
2016-07-25 08:57:021969parcourir
介绍下,如何用php获取一个月第一天与最后一天的代码,有需要的朋友参考下。

用php获取一个月第一天与最后一天。 代码:

<?php
/**
* php date函数示例
* 取一个月的第一天与最后一天
* by bbs.it-home.org
*/
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); 
}
?>


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn