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); 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--; } if ($month_diff < 0) { $year_diff--; } return $year_diff; }
Output for git.master, git.master_jit, rfc.property-hooks
string(4) "1981" string(2) "02" string(2) "27" -16 32

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
52.32 ms | 401 KiB | 8 Q