3v4l.org

run code in 300+ PHP versions simultaneously
<?php $timestamp = 1406851200; $date = date('Y-m-d', $timestamp); $dateTime = new DateTime($date, new DateTimeZone('America/Los_Angeles')); echo $dateTime->format('Y-m-d\TH:i:sP'); echo "\n"; $dateTimeTwo = new DateTime($date); echo $dateTimeTwo->format('Y-m-d\TH:i:sP'); echo "\n"; $dateTimeTwo->setTimezone(new DateTimeZone('America/Los_Angeles')); echo $dateTimeTwo->format('Y-m-d\TH:i:sP'); echo "\n"; $dateTimeThree = new DateTime("@{$timestamp}", new DateTimeZone('America/Los_Angeles')); echo $dateTimeThree->format('Y-m-d\TH:i:sP'); echo "\n"; $dateTimeFour = new DateTime("@{$timestamp}"); $dateTimeFour->setTimezone(new DateTimeZone('America/Los_Angeles')); echo $dateTimeFour->format('Y-m-d\TH:i:sP'); echo "\n";
Output for git.master, git.master_jit, rfc.property-hooks
2014-08-01T00:00:00-07:00 2014-08-01T00:00:00+02:00 2014-07-31T15:00:00-07:00 2014-08-01T00:00:00+00:00 2014-07-31T17:00:00-07: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:
46.43 ms | 401 KiB | 8 Q