Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does php calculate the date of birth, age, gender and length of service according to the ID card number?

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

I would like to share with you how php calculates the date of birth, age, sex and seniority according to the ID card number. I hope you will get something after reading this article. Let's discuss it together.

1. Calculate the date of birth, age and sex according to the ID card number (18 digits)

The copy code is as follows:

/ / obtain the input ID card number

Var UUserCard = $("# UUserCard") .val ()

/ / get the date of birth

/ / UUserCard.substring (6,10) + "-" + UUserCard.substring (10,12) + "-" + UUserCard.substring (12,14)

/ / obtain gender

If (parseInt (UUserCard.substr (16,1))% 2 = = 1) {

/ / male

} else {

/ / female

}

/ / get the age

Var myDate = new Date ()

Var month = myDate.getMonth () + 1

Var day = myDate.getDate ()

Var age = myDate.getFullYear ()-UUserCard.substring (6,10)-1

If (UUserCard.substring (10,12) < month | | UUserCard.substring (10,12) = = month & & UUserCard.substring (12,14)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report