日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

php生日验证,PHP验证生日

發(fā)布時間:2025/3/11 54 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php生日验证,PHP验证生日 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

function pc_checkbirthdate($month, $day, $year) {

$min_age = 18; // 過18歲

$max_age = 100; // 超過122歲

// 驗證是不是合法時間,不會出現(xiàn)2月30號類似錯誤

if (! checkdate ( $month, $day, $year )) {

return false;

}

// 取得當(dāng)前 年 月 日

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 "合法時間應(yīng)該大于:$min_year,$this_month,$this_day\\n
";

print "合法時間應(yīng)該小于:$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 ();

}

?>

總結(jié)

以上是生活随笔為你收集整理的php生日验证,PHP验证生日的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。