3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date = new DateTime('2015-11-11 15:00:00'); $date->setTimezone(new DateTimeZone('UTC')); var_dump($date); echo "\n Date timestamp using format(): " . $date->format('U'); echo "\n Date timestamp using getTimestamp(): " . $date->getTimestamp(); echo "\nChanging timezone to CET"; $date->setTimezone(new DateTimeZone('CET')); echo "\n Date timestamp using format(): " . $date->format('U') . ' NB: This has changed?!?!'; echo "\n Date timestamp using getTimestamp(): " . $date->getTimestamp() . ' NB: Now it is back?!?!'; echo "\n Date timestamp using format() again: " . $date->format('U') . ' NB: Now it is back?!?!'; ?>
Output for git.master, git.master_jit, rfc.property-hooks
object(DateTime)#1 (3) { ["date"]=> string(26) "2015-11-11 14:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } Date timestamp using format(): 1447250400 Date timestamp using getTimestamp(): 1447250400 Changing timezone to CET Date timestamp using format(): 1447250400 NB: This has changed?!?! Date timestamp using getTimestamp(): 1447250400 NB: Now it is back?!?! Date timestamp using format() again: 1447250400 NB: Now it is back?!?!

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:
36.72 ms | 402 KiB | 8 Q