Home > Article > Backend Development > How to get gender and date of birth from ID card in php example code
This article mainly introduces the method of php to obtain the gender and date of birth from the ID card. It has a very good reference value. Let’s take a look at it with the editor.
Without further ado, please look at the code:
//通过身份证号查询出性别与生日 $birth = strlen($idcard)==15 ? ('19' . substr($idcard, 6, 6)) : substr($idcard, 6, 8); $sex = substr($idcard, (strlen($idcard)==15 ? -2 : -1), 1) % 2 ? '1' : '0'; //1为男 2为女
//通过身份证号查询出性别与生日 if($data['cardtype'] == 'idcard'){ $data['birth'] = strlen($data['cardno'])==15 ? ('19' . substr($data['cardno'], 6, 6)) : substr($data['cardno'], 6, 8); $data['sex'] = substr($data['cardno'], (strlen($data['cardno'])==15 ? -2 : -1), 1) % 2 ? '1' : '0';
The above is the detailed content of How to get gender and date of birth from ID card in php example code. For more information, please follow other related articles on the PHP Chinese website!