3v4l.org

run code in 300+ PHP versions simultaneously
<?php $MNTTZ = new DateTimeZone('America/Denver'); $ESTTZ = new DateTimeZone('America/New_York'); $dt = new DateTime('11/24/2009 2:00 pm', $MNTTZ); var_dump($dt->format(DATE_RFC822), $dt->format('U')); $dt->setTimezone($ESTTZ); var_dump($dt->format(DATE_RFC822), $dt->format('U'));
Output for git.master, git.master_jit, rfc.property-hooks
string(29) "Tue, 24 Nov 09 14:00:00 -0700" string(10) "1259096400" string(29) "Tue, 24 Nov 09 16:00:00 -0500" string(10) "1259096400"

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