1. 程式人生 > >php根據出生日期獲取年齡,生日資料型別為date型

php根據出生日期獲取年齡,生日資料型別為date型

<span style="font-size:18px;"><strong>

function age($birthday){
		 $birthday = strtotime($birthday);//int strtotime ( string $time [, int $now ] )
		 $year = date('Y', $birthday);
		 if(($month = (date('m') - date('m', $birthday))) < 0){
			$year++;
		 }else if ($month == 0 && date('d') - date('d', $birthday) < 0){
			$year++;
		 }
		 return date('Y') - $year;
	}</strong></span>

此外還有一個相對簡單的解決方法:需要把 生日 unix時間戳,然後得出當前的時間戳差,最後除以一年的時間戳

function age($birthday) {
        if (strtotime($birthday) > 0){
            return (int)((time() - strtotime($birthday))/(86400 * 365)) .'歲';
        }else{
            return '-';
        }        
    }