| 广告招租,e-mail:yesize@hotmail.com
|
|
广告招租,e-mail:yesize@hotmail.com
<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>
版权说明:作品来源于网上,版权归作者所有,如果无意中侵犯了您的版权,请来信告知,本站将在3个工作日内删除。yesize@hotmail.com |
|