3v4l.org

run code in 300+ PHP versions simultaneously
<?php // todays date $today = date("Ymd"); // Call the getAge function if (isset($_POST['birth_date'])) { $age = getAge($birth_date) //Or fail else return 'false'; } 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; if ($day_diff < 0) { $month_diff--; } if ($month_diff < 0) { $year_diff--; } return $year_diff; }
Output for 5.4.0 - 5.4.25, 5.5.0 - 5.5.9
Parse error: syntax error, unexpected 'else' (T_ELSE) in /in/BvMob on line 14
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_ELSE in /in/BvMob on line 14
Process exited with code 255.

preferences:
193.91 ms | 1395 KiB | 72 Q