欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php获取指定月的某一天的日期

程序员文章站 2022-06-15 08:52:52
...
php获取指定月的某一天的日期
/**
* 获取指定月的第几天的日期
* @$year 年,$month月,$day天,$format显示时间的格式,$last是否该月最后一天
* @return $str
*/
function getMonthDay($year,$month,$day,$format='Y-m-d',$last=0){
if($last){
$time=new DateTime($day);
$d=strtotime($time->format("Y-m-d"));
$d=date("t",$d);
$time->setDate($year,$month,$d);
}else{
$time=new DateTime();
$time->setDate($year,$month,$day);
}
return $time->format($format);
}
如要获取2013年3月第一天,getMonthDay(2013,3,1)返回:2013-03-01
如要获取2013年最后一天,getMonthDay(2013,2,'',1)返回2013-02-28

AD:真正免费,域名+虚机+企业邮箱=0元