php生日验证,PHP验证生日
function pc_checkbirthdate($month, $day, $year) {
$min_age = 18; // 過18歲
$max_age = 100; // 超過122歲
// 驗證是不是合法時間,不會出現2月30號類似錯誤
if (! checkdate ( $month, $day, $year )) {
return false;
}
// 取得當前 年 月 日
list ( $this_year, $this_month, $this_day ) = explode ( ',', date ( 'Y, m, d' ) );
$min_year = $this_year - $max_age;
$max_year = $this_year - $min_age;
print "合法時間應該大于:$min_year,$this_month,$this_day\\n
";
print "合法時間應該小于:$max_year,$this_month,$this_day\\n
";
print "您輸入的時間是:$year,$month,$day\\n
";
if (($year > $min_year) && ($year < $max_year)) { // 先判斷年,如果在(最小年,最大年)之間,返回true
return true;
} elseif (($year == $max_year) && (($month < $this_month) || (($month == $this_month && ($day < $this_day))))) {//年相等的在判斷月,月相等在判斷日
return true;
} elseif (($year == $min_year) && (($month > $this_month) || (($month == $this_month && ($day > $this_day))))) {
return true;
} else {
return false;
}
}
if (pc_checkbirthdate ( 4, 29, 1995 )) {
print "You may use this web site.";
} else {
print "please input the correct birthdate.";
exit ();
}
?>
總結
以上是生活随笔為你收集整理的php生日验证,PHP验证生日的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: flag的具体用法python_Pyth
- 下一篇: php进度条如何计算,投票最后显示进度条