首页 > 后端开发 > php教程 > 怎样校验输入的日期为合法的日期?这里有一个例子(checkdate.php3_PHP

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

WBOY
发布: 2016-06-01 12:28:39
原创
845 人浏览过



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 . "日 是合法日期!
";
      }
      else{
         echo $year . "年" . $month . "月" . $day . "日 不是合法日期!
";
      }
   }
   else{
      echo $year . "年" . $month . "月" . $day . "日 不是合法日期!
";
   }
}

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

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板