이 글에서는 PHP를 사용하여 생년월일을 기준으로 나이를 계산하는 기능을 소개하고, PHP 날짜 관련 변환 및 계산 연산 기술을 예제 형식으로 분석합니다. 도움이 필요한 친구들이 모두 참고할 수 있기를 바랍니다.
코드는 다음과 같습니다:
<?php /** * 根据出生年月日计算出年龄 * @param $birth_year * @param $birth_month * @param $birth_day * @return int */ function getAgeByBirth($birth_year,$birth_month,$birth_day){ if(empty($birth_year) || empty($birth_month) || empty($birth_day)){ return 0; } $current_year = date('Y',time()); $current_month = date('m',time()); $current_day = date('d',time()); if($birth_year >= $current_year){ return 0; } $age = $current_year - $birth_year - 1; if($current_month>$birth_month){ return $age+1; }else if($current_month == $birth_month && $current_day>=$birth_day){ return $age+1; }else{ return $age; } } //测试: echo getAgeByBirth('1988','4','8'); ?>
실행 결과:
32
더 많은 관련 지식을 보려면 PHP 중국어 웹사이트를 주목하세요! !
위 내용은 PHP는 생년월일을 기준으로 나이를 계산하는 기능을 구현합니다(코드 예).의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!