3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getIntervalEnd($pointer, $interval){ $to = clone $pointer; // For minute interval, return end of the pointers minute if($interval == 'PT1M') $to->setTime($to->format('H'), $to->format('i'), 59); // For hour interval, return end of the pointers hour elseif($interval == 'PT1H') $to->setTime($to->format('H'), 59, 59); // For day interval, return end of the pointers day elseif($interval == 'P1D') $to->setTime(23, 59, 59); // For week interval, return end of the pointers week elseif($interval == 'P7D'){ if($to->format('N') != 7) $to->setTimestamp(strtotime('next sunday', $to->getTimestamp())); $to->setTime(23, 59, 59); } // For month interval, return end of the pointers month elseif($interval == 'P1M') $to->setDate($to->format('Y'), $to->format('m'),$to->format('t'))->setTime(23, 59, 59); // For year interval, return end of the pointers year elseif($interval == 'P1Y') $to->setDate($to->format('Y'), 12, 31)->setTime(23, 59, 59); return $to; } echo getIntervalEnd(new \DateTime(), 'P1D')->format('c');
Output for git.master, git.master_jit, rfc.property-hooks
2015-06-05T23:59:59+02:00

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