php之实战项目--年份判断是否为闰年

Posted xiaofeiyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php之实战项目--年份判断是否为闰年相关的知识,希望对你有一定的参考价值。

实现效果:

实现代码:

<html>
<head>
<meta charset="utf8">
</head>
<body>
<table border="1" align="center" width="450" height="101" cellpadding="1" cellspacing="1" bgcolor="#ccff00">
<tr><td height="25" align="center" colspan="2">判断指定的年份是否为闰年</td></tr>
<tr bgcolor="#ffff99">
<td width="200" height="30" >请输入一个四位数的年份:</td>
<td >
<form action="" method="post">
<input type="text" name="year">
<input type="submit" name="submit" value="计算">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<?php
if(isset($_POST[\'submit\'])){
if($_POST[\'year\']=="") echo "请输入年份后再提交!";
else{
$year=$_POST[\'year\'];
$result=($year%4==0&&$year%100!=0)||($year%400==0)?$year."是闰年":$year."不是闰年";
echo $result;
}
}
?>
</td>
</tr>
</table>
</body>
</html>

以上是关于php之实战项目--年份判断是否为闰年的主要内容,如果未能解决你的问题,请参考以下文章

pandas判断日期是否是闰年(is_leap_year)实战: 数据列转化为日期(时间)格式判断pandas的日期数据列是否是闰年

判断指定年份是否为闰年

怎样用JAVA写判断一个年份是否闰年的程序?

编写一个C#控制台应用程序,从键盘输入年份,判断此年份是否闰年。

判断输入的年份是否为闰年

判断给到的年份是否为闰年