Home > Backend Development > PHP Tutorial > Get all dates within any date, you can distinguish between big and small months_PHP tutorial

Get all dates within any date, you can distinguish between big and small months_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:12:27
Original
988 people have browsed it

$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<7){
        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)
";
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/629363.htmlTechArticle?php $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,da...
Related labels:
Statement of this Website
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
Latest Issues
ubuntu mongodb 出现 exception: connect failed
From 1970-01-01 08:00:00
0
0
0
git出错: Cannot save the current index state
From 1970-01-01 08:00:00
0
0
0
An error occurred
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template