functionidentityToAge($id){
if(empty($id)) return '';
$date=strtotime(substr($id,6,8));
//생년월일의 타임스탬프를 가져옵니다. day
$today=strtotime('today');
//오늘의 타임스탬프 가져오기
$diff=floor(($today-$date)/86400/365);
//두 날짜 사이의 대략적인 연수를 가져옵니다
/ /strtotime은 이 연수를 더하여 해당 날짜의 타임스탬프를 얻고 이를 오늘의 타임스탬프와 비교합니다
$age=strtotime(substr($id,6,8).' +'.$diff.'years')> $today?($diff+1):$diff;
$age 반환;
}
위 내용은 신분증 정보를 기반으로 나이를 알아보세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!