龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

php 根据生日计算年龄

时间:2014-06-19 02:14来源:网络整理 作者:网络 点击:
分享到:
根据生日计算年龄 ```{.php}function age($date){$year_diff = #39;#39;;$time = strtotime($date);if(FALSE === $time){return #39;#39;;}$date = date(#39;Y-m-d#39;, $time);list($year,$month,$day) = explode(quot;-quot;,$dat
function age($date){
    $year_diff = '';
    $time = strtotime($date);
    if(FALSE === $time){
        return '';
    }

    $date = date('Y-m-d', $time);
    list($year,$month,$day) = explode("-",$date);
    $year_diff = date("Y") – $year;
    $month_diff = date("m") – $month;
    $day_diff = date("d") – $day;
    if ($day_diff < 0 || $month_diff < 0) $year_diff–;

    return $year_diff;
}

精彩图集

赞助商链接