码迷,mamicode.com
首页 > Web开发 > 详细

php实现身份证号码计算年龄

时间:2014-09-25 18:07:27      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   cti   on   c   代码   时间   

代码如下 复制代码

<?php 
function getAgeByID($id){ 
        
//过了这年的生日才算多了1周岁 
        if(empty($id)) return ‘‘; 
        $date=strtotime(substr($id,6,8));
//获得出生年月日的时间戳 
        $today=strtotime(‘today‘);
//获得今日的时间戳 111cn.net
        $diff=floor(($today-$date)/86400/365);
//得到两个日期相差的大体年数 
        
//strtotime加上这个年数后得到那日的时间戳后与今日的时间戳相比 
        $age=strtotime(substr($id,6,8).‘ +‘.$diff.‘years‘)>$today?($diff+1):$diff; 
  
        return $age; 
    } 
?>

拒绝不带连接转载:http://www.111cn.net/phper/php/57198.htm

php实现身份证号码计算年龄

标签:http   io   ar   sp   cti   on   c   代码   时间   

原文地址:http://www.cnblogs.com/zhujiasheng/p/3993047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!