3v4l.org

run code in 300+ PHP versions simultaneously
<?php $datesarray = array('2012-10-01', '2012-10-03', '2012-10-05', '2012-10-08', '2012-10-09'); $count = 0; $result = "Nothing found"; $diff = strtotime('2014-05-07') - strtotime('2014-05-06'); for ($i=2, $c=count($datesarray); $i<$c; ++$i) { if (strtotime($datesarray[$i-1]) - strtotime($datesarray[$i-2]) == $diff && strtotime($datesarray[$i]) - strtotime($datesarray[$i-2]) == $diff * 2) { $result = "3 Consecutive dates found"; break; } } echo "Result: $result";
Output for git.master, git.master_jit, rfc.property-hooks
Result: Nothing found

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