浏览代码

添加一个辅助类

gwang 4 年之前
父节点
当前提交
a43babb02d
共有 2 个文件被更改,包括 104 次插入1 次删除
  1. 103 0
      Gameserver/Amfphp/util/IDCardValiUtil.php
  2. 1 1
      Gameserver/nbproject/private/private.xml

+ 103 - 0
Gameserver/Amfphp/util/IDCardValiUtil.php

@@ -0,0 +1,103 @@
+<?php
+
+namespace loyalsoft;
+
+/**
+ * Description of IDCardValiUtil
+ * 身份证校验类
+ * @author gwang
+ */
+class IDCardValiUtil {
+
+    /**
+     * 校验
+     * @param type $id_card
+     * @return boolean
+     */
+    static function validation_filter_id_card($id_card) {
+        if (strlen($id_card) == 18) {
+            return self::idcard_checksum18($id_card);
+        } elseif ((strlen($id_card) == 15)) {
+            $id_card = self::idcard_15to18($id_card);
+            return self::idcard_checksum18($id_card);
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * 计算身份证校验码,根据国家标准GB 11643-1999
+     * @param type $idcard_base
+     * @return boolean|string
+     */
+    static function idcard_verify_number($idcard_base) {
+        if (strlen($idcard_base) != 17) {
+            return false;
+        }
+        //加权因子
+        $factor = array(7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2);
+        //校验码对应值
+        $verify_number_list = array('1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2');
+        $checksum = 0;
+        for ($i = 0; $i < strlen($idcard_base); $i++) {
+            $checksum += substr($idcard_base, $i, 1) * $factor[$i];
+        }
+        $mod = $checksum % 11;
+        $verify_number = $verify_number_list[$mod];
+        return $verify_number;
+    }
+
+    /**
+     * 将15位身份证升级到18位
+     * @param type $idcard
+     * @return boolean|string
+     */
+    static function idcard_15to18($idcard) {
+        if (strlen($idcard) != 15) {
+            return false;
+        } else {
+            // 如果身份证顺序码是996 997 998 999,这些是为百岁以上老人的特殊编码
+            if (array_search(substr($idcard, 12, 3), array('996', '997', '998', '999')) !== false) {
+                $idcard = substr($idcard, 0, 6) . '18' . substr($idcard, 6, 9);
+            } else {
+                $idcard = substr($idcard, 0, 6) . '19' . substr($idcard, 6, 9);
+            }
+        }
+        $idcard = $idcard . self::idcard_verify_number($idcard);
+        return $idcard;
+    }
+
+    /**
+     * 18位身份证校验码有效性检查
+     * @param type $idcard
+     * @return boolean
+     */
+    static function idcard_checksum18($idcard) {
+        if (strlen($idcard) != 18) {
+            return false;
+        }
+        $idcard_base = substr($idcard, 0, 17);
+        if (self::idcard_verify_number($idcard_base) != strtoupper(substr($idcard, 17, 1))) {
+            return false;
+        } else {
+            return true;
+        }
+    }
+
+    /**
+     * 根据给定身份证号码推算当前年龄
+     * @param type $idcard
+     * @return type
+     */
+    static function idcard_getage($idcard) {
+        if (self::validation_filter_id_card($idcard)) {
+            if ((strlen($idcard) == 15)) {
+                $idcard = self::idcard_15to18($idcard);
+            }
+            $bird_year = substr($idcard, 6, 4);
+            return date("Y") - $bird_year;
+        }
+        return -1;
+    }
+
+}

+ 1 - 1
Gameserver/nbproject/private/private.xml

@@ -13,10 +13,10 @@
     <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
         <group>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/test.php</file>
+            <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/process/PayProc/YuanBaoPayProc.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/model/User/StoreModel.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/model/User/UserTaskInfo.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/process/HeroProc.php</file>
-            <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/model/User/TaskCardVo.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/process/SystemProc.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/base/ErrCode.php</file>
             <file>file:/D:/local_svn/0_ylsj2019/ylsj2019Server/Gameserver/Amfphp/process/StoreProc.php</file>