ホームページ > 記事 > 毎日のプログラミング > IDカード情報から年齢を取得
functionidentityToAge($id){
if(empty($id)) return '';
$date=strtotime(substr($id,6,8));
//誕生年、誕生月、および誕生日のタイムスタンプを取得しますday
$today=strtotime('today');
//今日のタイムスタンプを取得します
$diff=floor(($today-$date)/86400/365);
//2 つの日付間のおおよその年数を取得します
/ /strtotime は、今日のタイムスタンプと比較してその日のタイムスタンプを取得するためにこの年数を加算します
$age=strtotime(substr($id,6,8).' +'.$diff.'years')> ?($diff+1):$diff;
return $age;
}
以上がIDカード情報から年齢を取得の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。