- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
<?php
// Calculate the age from a given birth date
// Example: GetAge("1986-06-18");
function GetAge($Birthdate)
{
// Explode the date into meaningful variables
list($BirthYear,$BirthMonth,$BirthDay) = explode("-", $Birthdate);
// Find the differences
$YearDiff = date("Y") - $BirthYear;
$MonthDiff = date("m") - $BirthMonth;
$DayDiff = date("d") - $BirthDay;
// If the birthday has not occured this year
if ($DayDiff < 0 || $MonthDiff < 0)
$YearDiff--;
return $YearDiff;
}
?>
добыто в интернете.
Опять пхп и опять даты. Похоже, это вечное...
Int 21.03.2011 12:47 # 0
rO_ot 22.03.2011 23:06 # +1
rO_ot 22.03.2011 23:06 # +1
explode("-", $Birthdate);
Каждый говнокодер в своей жизни должен написать подобную хуйню
Vasiliy 23.03.2011 13:35 # 0