3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Count the number of days since the beginning of the year. // // DD:MM:YYYY function dayCount($date) { $day = strtok($date, ":"); print $day . ' '; $month = strtok(":") - 1; print $month . ' '; $year = strtok(":"); print $year . ' '; $months = array(31,28,31,30,31,30,31,31,30,31,30,31); if ($year%4 == 0) { $months[1] = 29; } for ($i = 0; $i < $month; $i++) { $days += $months[$i]; } $days += $day; print $days; } dayCount("31:12:2012"); ?>
Output for git.master, git.master_jit, rfc.property-hooks
31 11 2012 Warning: Undefined variable $days in /in/kqA8C on line 27 366

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:
38.76 ms | 401 KiB | 8 Q