·您的位置: 首页 » 资源教程 » 编程开发 » PHP » 怎样校验输入的日期为合法的日期?这里有一个例子(checkdate.php3)

怎样校验输入的日期为合法的日期?这里有一个例子(checkdate.php3)

类别: PHP教程  评论数:0 总得分:0
<html>
<body>
<?
function is_numeric($var){
   $str = (string)$var;
   $int = (int)$var;
   $strstr = (string)$int;
   if($strstr==$str) return true;
   else return false;
}

function check($year,$month,$day)
{
   if(is_numeric($year) and is_numeric($month) and is_numeric($day)){
      if(checkdate($month,$day,$year)){
         echo $year . "年" . $month . "月" . $day . "日 是合法日期!<br>";
      }
      else{
         echo $year . "年" . $month . "月" . $day . "日 不是合法日期!<br>";
      }
   }
   else{
      echo $year . "年" . $month . "月" . $day . "日 不是合法日期!<br>";
   }
}

check("1999","1","1");
check("2000","2","31");
check("1900","2","1");
check("1900.2","2","1");
check("aaa","1","1");
?>
</body>
</html>




-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1