PHP는 생일을 기준으로 나이(1세)를 계산합니다
<?php/** * 根据时间戳计算年龄 * @param $birth * @return mixed */functionhowOld($birth) {list($birthYear, $birthMonth, $birthDay) = explode('-', date('Y-m-d', $birth)); list($currentYear, $currentMonth, $currentDay) = explode('-', date('Y-m-d')); $age = $currentYear - $birthYear - 1; if($currentMonth > $birthMonth || $currentMonth == $birthMonth && $currentDay >= $birthDay) $age++; return$age; } ?>
위에서는 측면을 포함하여 생일을 기준으로 나이(1세)를 계산하는 PHP를 소개합니다. , 기타 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!
관련 기사: