3v4l.org

run code in 300+ PHP versions simultaneously
<?php //First we are setting the time to the current time, in the Chicago time zone $date = new DateTime(null, new DateTimeZone('America/Chicago')); //Then We are going to echo this information echo "<b>Chicago:</b> "; echo date_format($date, 'F jS Y H:i:s P') . "<br>"; //Now we are going to show the exact same time, the current time, for Madrid echo "<b>Madrid:</b> "; date_timezone_set($date, timezone_open('Europe/Madrid')); echo date_format($date, 'F jS Y H:i:s P') . "\n"; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated in /in/KeWBM on line 5 <b>Chicago:</b> June 13th 2014 22:46:16 -05:00<br><b>Madrid:</b> June 14th 2014 05:46:16 +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:
35.55 ms | 401 KiB | 8 Q