3v4l.org

run code in 300+ PHP versions simultaneously
<?php // todays date $today = date("Ymd"); $birth_date = '1981-02-09'; //Call the age function $age = getAge($birth_date); echo PHP_EOL . $age; function getAge($birth_date){ list($year, $month, $day) = explode("-", $birth_date); var_dump($year, $month, $day); $year_diff = date("Y") - $year; $month_diff = date("m") - $month; $day_diff = date("d") - $day; echo $day_diff . PHP_EOL; if ($day_diff < 0 || $month_diff < 0) $year_diff--; return $year_diff; }

preferences:
36.23 ms | 402 KiB | 5 Q