3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start_date = '2014-3-19'; $end_date = '2014-5-19'; $begin = new DateTime( $start_date ); $end = new DateTime(date("Y-m-d",strtotime("+1 day", strtotime($end_date)))); while($begin < $end) { if(isWeekend($begin->format('Y-m-d'))) $period[] = $begin->format('Y-m-d'); $begin->modify('+1 day'); } foreach($period as $val) { print_r("Value: " . $val . (isWeekend($val) ? " - weekend\n" : " - weekday\n")); } function isWeekend($date) { return (date('N', strtotime($date)) >= 6); }
Output for git.master, git.master_jit, rfc.property-hooks
Value: 2014-03-22 - weekend Value: 2014-03-23 - weekend Value: 2014-03-29 - weekend Value: 2014-03-30 - weekend Value: 2014-04-05 - weekend Value: 2014-04-06 - weekend Value: 2014-04-12 - weekend Value: 2014-04-13 - weekend Value: 2014-04-19 - weekend Value: 2014-04-20 - weekend Value: 2014-04-26 - weekend Value: 2014-04-27 - weekend Value: 2014-05-03 - weekend Value: 2014-05-04 - weekend Value: 2014-05-10 - weekend Value: 2014-05-11 - weekend Value: 2014-05-17 - weekend Value: 2014-05-18 - weekend

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:
37.57 ms | 402 KiB | 8 Q