3v4l.org

run code in 300+ PHP versions simultaneously
<?php $utc = new \DateTime('2018-01-01 00:00:00', new DateTimezone('UTC')); $local = new \DateTime('2018-01-01 00:00:00', new DateTimezone('Europe/Paris')); echo 'UTC: ' . $utc->getTimestamp() . "\n"; echo 'PARIS: ' . $local->getTimestamp() . "\n"; echo $localBack = new \DateTime('@' . $local->getTimestamp()); $localBack->setTimezone(new DateTimezone('Europe/Paris')); echo $localBack->format('Y-m-d H:i.s');
Output for git.master, git.master_jit, rfc.property-hooks
UTC: 1514764800 PARIS: 1514761200 Fatal error: Uncaught Error: Object of class DateTime could not be converted to string in /in/VkF9i:9 Stack trace: #0 {main} thrown in /in/VkF9i on line 9
Process exited with code 255.

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