|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我是根据自己的成长历程来写的,如有不对的还请指正。 <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>
也或许是因为我还没有真正的学到深处吧,说实在的,PHP中的很多高级点的应用,如PHP类、PHP函数基本还是不懂吧! |
|