身份证验证PHP类
class IdcardAction extends Action{ function get_xingzuo($cid) { if (!$this->isIdCard($cid)) return ''; $bir = substr($cid,10,4); $month = (int)substr($bir,0,2); $day = (int)substr($bir,2); $strValue = ''; if (($month == 1 && $day >= 20) || ($month == 2 && $day <= 18)) { $strValue = "水瓶座"; } else if (($month == 2 && $day >= 19) || ($month == 3 && $day <= 20)) { $strValue = "双鱼座"; } else if (($month == 3 && $day > 20) || ($month == 4 && $day <= 19)) { $strValue = "白羊座"; } else if (($month == 4 && $day >= 20) || ($month == 5 && $day <= 20)) { $strValue = "金牛座"; } else if (($month == 5 && $day >= 21) || ($month == 6 && $day <= 21)) { $strValue = "双子座"; } else if (($month == 6 && $day > 21) || ($month == 7 && $day <= 22)) { $strValue = "巨蟹座"; } else if (($month == 7 && $day > 22) || ($month == 8 && $day <= 22)) { $strValue = "狮子座"; } else if (($month == 8 && $day >= 23) || ($month == 9 && $day <= 22)) { $strValue = "处女座"; } else if (($month == 9 && $day >= 23) || ($month == 10 && $day <= 23)) { $strValue = "天秤座"; } else if (($month == 10 && $day > 23) || ($month == 11 && $day <= 22)) { $strValue = "天蝎座"; } else if (($month == 11 && $day > 22) || ($month == 12 && $day <= 21)) { $strValue = "射手座"; } else if (($month == 12 && $day > 21) || ($month == 1 && $day <= 19)) { $strValue = "魔羯座"; } return $strValue; }
PHP根据身份证号,自动获取对应的星座函数,然后自动返回对应的星座,自动返回性别,判断是否成年
免责声明
本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn
相关文章
Laravel - 身份验证
27Aug2024
Laravel - 身份验证 - 身份验证是识别用户凭据的过程。在 Web 应用程序中,身份验证由会话管理,会话采用电子邮件或用户名和密码等输入参数来进行用户识别。
Next.js 身份验证
03Nov2024
从 Next.js 15 开始,处理身份验证变得更加强大和灵活,特别是凭借其高级服务器组件、Actions API 和中间件功能。在本文中,我们将探讨实施身份验证的最佳实践
Node.js 中的身份验证
19Aug2024
Node.js 中的身份验证 什么是身份验证? 身份验证是验证用户或系统身份的过程。在 Web 应用程序中,身份验证可确保尝试访问系统的人就是他们声称的身份。这个p
Hot Tools
热门文章
如何修复 Windows 中的 Microsoft Teams 错误 657rx?
29Nov2024故障排查
印第安纳琼斯与大圆圈:房间里的大象演练
17Dec2024手游攻略
为什么 `pip install` 失败并出现'权限被拒绝”错误,如何修复?
13Dec2024Python教程
如何修复和升级《潜行者2》中的武器和装甲
29Nov2024手游攻略
如何更改 Bootstrap 4 导航栏汉堡图标颜色?
12Dec2024css教程