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"); ?>

preferences:
50.08 ms | 402 KiB | 5 Q