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); $marketCloseTime = new DateTime('17:00:00'); $marketOpenTime = new DateTime('08:00:00'); echo $marketOpenTime->format('r'); echo "\n"; echo $nowDate->format('r'); return ($nowDate > $marketOpenTime && $nowDate < $marketCloseTime); } isMarketOpen('Wed 07:32:10 EST');
Output for git.master, git.master_jit, rfc.property-hooks
Wed, 01 Oct 2014 08:00:00 +0200 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:
37.42 ms | 401 KiB | 8 Q