3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date = new DateTime('2015-01-15 15:00:00'); var_dump($date); $date->setTimezone(new DateTimeZone('CET')); 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-01-15 15:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } Date timestamp using format(): 1421330400 Date timestamp using getTimestamp(): 1421330400 Changing timezone to CET Date timestamp using format(): 1421330400 NB: This has changed?!?! Date timestamp using getTimestamp(): 1421330400 NB: Now it is back?!?! Date timestamp using format() again: 1421330400 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:
52.59 ms | 402 KiB | 8 Q