根据身*份*证信息获取年龄
程序员文章站
2022-03-06 12:53:45
...
function identityToAge($id){ if(empty($id)) return ''; $date=strtotime(substr($id,6,8)); //获得出生年月日的时间戳 $today=strtotime('today'); //获得今日的时间戳 $diff=floor(($today-$date)/86400/365); //得到两个日期相差的大体年数 //strtotime加上这个年数后得到那日的时间戳后与今日的时间戳相比 $age=strtotime(substr($id,6,8).' +'.$diff.'years')>$today?($diff+1):$diff; return $age; }
上一篇: 插画人物如何构图?插画构图的正确方式
下一篇: 在多核系统上网络数据转发实验和一点思考