Home >php教程 >php手册 >取出任意日期内的所有日期,可以区分大小月

取出任意日期内的所有日期,可以区分大小月

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:14:011132browse

$a=1;
$endtime="2002-02-06";//指定日期
$info="大月";
while(1){
    $gettime=date("Y-m-d",mktime(0,0,0,date("m"),date("d")-$a,date("Y")));
    $month=date("m",mktime(0,0,0,date("m"),date("d")-$a,date("Y")));
    if($month        if($month%2==0){
       $info="小月";
        }else{
       $info="大月";
        }
    }
    if($month>8){
        if($month%2==0){
       $info="大月";
        }else{
       $info="小月";
        }
    }
    if(strcmp($gettime,$endtime)==0){
        break;
    }else{
        $a++;
    }
    echo "Output:->    ".$gettime." ($info)
";
}
?>

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