3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date = new DateTime('2015-11-11 15:00:00', new DateTimeZone('UTC')); //var_dump($date); echo "\ntimezone ", $date->format("e"),"\n"; echo "\n Date timestamp using format(): " . $date->format('U'); echo "\ntimezone ", $date->format("e"),"\n"; echo "\n Date timestamp using getTimestamp(): " . $date->getTimestamp(); echo "\ntimezone ", $date->format("e"),"\n"; echo "\nChanging timezone to CET"; $date->setTimezone(new DateTimeZone('CET')); echo "\ntimezone ", $date->format("e"),"\n"; echo "\n Date timestamp using format(): " . $date->format('U') . ' NB: This has changed?!?!'; echo "\ntimezone ", $date->format("e"),"\n"; echo "\n Date timestamp using getTimestamp(): " . $date->getTimestamp() . ' NB: Now it is back?!?!'; echo "\ntimezone ", $date->format("e"),"\n"; echo "\n Date timestamp using format() again: " . $date->format('U') . ' NB: Now it is back?!?!'; echo "\ntimezone ", $date->format("e"),"\n";
Output for git.master, git.master_jit, rfc.property-hooks
timezone UTC Date timestamp using format(): 1447254000 timezone UTC Date timestamp using getTimestamp(): 1447254000 timezone UTC Changing timezone to CET timezone CET Date timestamp using format(): 1447254000 NB: This has changed?!?! timezone CET Date timestamp using getTimestamp(): 1447254000 NB: Now it is back?!?! timezone CET Date timestamp using format() again: 1447254000 NB: Now it is back?!?! timezone CET

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