PHP验证生日

May 25, 2016 pm 05:06 PM

php代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

<?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 ( &#39;,&#39;, date ( &#39;Y, m, d&#39; ) );

    $min_year = $this_year - $max_age;

    $max_year = $this_year - $min_age;

     

    print "合法时间应该大于:$min_year,$this_month,$this_day\n<br/>";

    print "合法时间应该小于:$max_year,$this_month,$this_day\n<br/>";

    print "您输入的时间是:$year,$month,$day\n<br/>";

     

    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 ();

}

?>

ログイン後にコピー
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

Video Face Swap

Video Face Swap

完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)