3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isMarketOpen($timestamp) { //>Wed 11:32:10 EST $timezone = new DateTimeZone('EST'); $nowDate = new DateTime((string) $timestamp, $timezone); $marketCloseTime = new DateTime('17:00:00', $timezone); $marketOpenTime = new DateTime('08:00:00', $timezone); echo $marketOpenTime->format('r'); echo "\n"; echo $nowDate->format('r'); return ($nowDate > $marketOpenTime && $nowDate < $marketCloseTime); } isMarketOpen('07:32:10');
Output for git.master, git.master_jit, rfc.property-hooks
Wed, 01 Oct 2014 08:00:00 -0500 Wed, 01 Oct 2014 07:32:10 -0500

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