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; } ?>
上記は、PHP が誕生日に基づいて年齢 (1 歳) を計算する方法を、関連するコンテンツも含めて紹介しています。中国語のウェブサイト (www.php.cn) !
関連記事: