3v4l.org

run code in 300+ PHP versions simultaneously
<?php // todays date $today = date("Ymd"); $birth_date = '1981-02-27'; //Call the age function $age = getAge($birth_date); $_POST['birth_date'] foreach ($_POST as $key => $val) { $$key = $value; } if (isset($_POST['birth_date'])) { $age = sdfsdffsd(sdfsd) } else { //sdfdfsdf } 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 'foreach' (T_FOREACH) in /in/6bZNR on line 13
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_FOREACH in /in/6bZNR on line 13
Process exited with code 255.

preferences:
174.76 ms | 1399 KiB | 72 Q