加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – 闰年和非闰年进入单独的表

发布时间:2020-12-13 22:27:52 所属栏目:PHP教程 来源:网络整理
导读:这段代码将显示从1991年到2100年的闰年和非闰年,我试图在闰年和非闰年制作一个表,但我失败了. 如何以表格格式或网格系统中引入它?这是为了学术研究. !DOCTYPE html html head titleLeap Year/title script src="https://maxcdn.bootstrapcdn.com/bootstrap/
这段代码将显示从1991年到2100年的闰年和非闰年,我试图在闰年和非闰年制作一个表,但我失败了.

如何以表格格式或网格系统中引入它?这是为了学术研究.

<!DOCTYPE html>
    <html>
    <head>
        <title>Leap Year</title>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    </head>
    <body>
        <?php  
        function isLeap($year) {
        return ((($year % 4) == 0) && ((($year % 100) != 0)));
        }

            for($year=1991; $year<=2100; $year++)  
            {  
                If (isLeap($year))  
                {   
                    $leap="$year : LEAP YEAR <br/>";
                    //echo "<div class='col-sm-12'>" . $leap . "</div>";
                    echo $leap;
                }  
                else  
                {  
                    $nonLeap="$year : Not leap year <br/>";  
                    //echo "<div class='col-sm-6'>" . $nonLeap ."</div>";       
                    echo $nonLeap;           
                }  
            }
        ?>
    </body>
    </html>

解决方法

你的isLeap函数是错误的.你也可以参考这个 post.

function isLeap($year) {
    return ((($year % 4) == 0) && ((($year % 100) != 0) || (($year % 400) == 0)));
}

for($year=1991; $year<=2100; $year++)  
{  
    if (isLeap($year))  
    {   
        $leaps[] = $year;
    }  
    else  
    {  
        $nonLeaps[] = $year;
    }
}

echo '<table><tr>';
foreach($leaps as $y)
{
  echo '<td>' . $y . '</td>';
}
echo '</tr></table>';

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读