主に閏年の状況を考慮し、2.29日生まれの場合、閏年でなければ2.28日を1歳として数えます。
OnFunction Age ($ BIRTH) { $ Age = Array (); // $ now = date ('ymd') $now = "20110228"; $nowyear = (int) ($now / 10000); $nowmonth = (int) (($now % 10000) / 100); $nowday = $now % 100; // 生年月日を年、月、日に分解します。 $birthyear = (int) ( $birth / 10000);
$birthmonth = (int) (($birth % 10000) / 100); $ Nowyear-$ BIRTHEAR を使用
|