当前位置:网站首页>Regular verification of ID number
Regular verification of ID number
2022-07-23 14:44:00 【Kexiaoyang lmy】
if (!checkCertNo($input['certNo'])) {
echo " The ID number is incorrect. ";
}
function checkCertNo($idcard)
{
$len = strlen($idcard);
if ($len != 18) {
return false;
}
$idcard_base = substr($idcard, 0, 17);
// Weighting factors
$factor = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
// Check code corresponding value
$verify_number_list = ['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;
return strtoupper(substr($idcard, 17, 1)) == $verify_number_list[$mod];
}
边栏推荐
- 【测试平台开发】二十、完成编辑页发送接口请求功能
- First acquaintance and search set
- 利用js自动解析执行xss
- 【数组&&字符串&&宏练习题】
- Authing supports Zadig! Unified authentication and rapid docking of cloud native users
- Pycharm读取Excel文件时报错:raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+ ; not supported )
- 優化華為雲服務器采用Key登陸
- C语言项目实战:24点游戏计算器(基于结构体、指针、函数、数组、循环等知识点)
- 生成订单号
- websocket通用化封装设计与实现
猜你喜欢

Authing supports Zadig! Unified authentication and rapid docking of cloud native users

js纹理样式饼图插件

ValidationError: Invalid options object. Dev Server has been initialized using an options object th

【C語言】猜數字小遊戲+關機小程序

Consensys Quorum Benchmark Test

Qt文档阅读笔记-Audio Example解析

Which is a good fixed asset management system? What are the fixed asset management platforms?

基于EFR32MG24的AI 加速度姿势识别体验

【面试高频】cookie、session、token?看完再也不担心被问了

Towhee weekly model
随机推荐
[paper notes] mobile robot navigation method based on hierarchical depth reinforcement learning
LZ77 file compression
ArcGIS uses DEM data to delineate the specific steps and processes of catchment area
Spotlight light box JS plug-in full screen enlarged picture
Yunna - how to strengthen fixed asset management? How to strengthen the management of fixed assets?
spotlight灯箱js插件全屏放大图片
【附下载】值得收藏的几款渗透测试常用的脚本
After using vscode to format the code, save and find that the code is messy again. What should I do? Vs remove formatting
Uni app knowledge points and records of problems and solutions encountered in the project
npm warn config global `--global`, `--local` are deprecated. use `--location=global` instead.
基金开户网上办理是否安全?谁给解答一下
Ffmpeg 2 - use of ffplay, ffprobe, ffmpeg commands
Fabric. JS basic brush
基本51单片机点阵汉字显示程序设计
Official wechat product! Applet automation framework minium sharing Preview
【小程序自动化Minium】一、框架介绍和环境搭建
关于flex布局justify-content:space-around最后一个不对齐的解决方法和为什么这样子解决是讨论
【WinForm】关于截图识别数字并计算的桌面程序实现方案
【面试高频】cookie、session、token?看完再也不担心被问了
websocket通用化封装设计与实现