Heim  >  Artikel  >  Backend-Entwicklung  >  php取一个月的第一天的代码

php取一个月的第一天的代码

WBOY
WBOYOriginal
2016-07-25 08:56:581069Durchsuche
本文介绍下,在php中根据时间戳取得一个月的第一天的实现代码,有兴趣的朋友,可以研究下哦。

在本节给出的这个函数,可以获取当月的第一天。 该函数接受一个单一的,可选的参数,它是一个UNIX时间戳的任何日期。 然后,该函数将返回从UNIX时间戳月份的第一天的UNIX时间戳。如果没有时间戳,该功能默认当前的月份。

由此产生的时间戳,可以结合php的日期函数date()进行任意可能的操作。 非常适合用作日历类,以及获取任何一个月的第一天。

代码:

<?php 

/* 
 * 
 * @ 返回某月第一天的时间戳 
 * 
 * @param INT Unix timestamp 
 * 
 * @return INT 
 * 
 */ 
function firstDayOfMonth($uts=null) 
{ 
    $today = is_null($uts) ? getDate() : getDate($uts); 
    $first_day = getdate(mktime(0,0,0,$today['mon'],1,$today['year'])); 
    return $first_day[0]; 
} 

 /*** example usage ***/ 

 /*** using the default ***/ 
 echo firstDayOfMonth(); 

 echo '<hr />'; 

 /*** using a timestamp ***/ 
 $long_ago = strtotime('April 16 2002'); 
 echo firstDayOfMonth($long_ago); 

?> 

演示结果: 1375279200 1017583200



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn