3v4l.org

run code in 300+ PHP versions simultaneously
<?php $d1 = new DateTime("2015-01-01"); $d2 = new DateTime("2015-02-01", DateTimeZone::EUROPE); $d3 = new DateTime("2015-03-01", DateTimeZone::EUROPE); $d4 = new DateTime("2015-04-01", DateTimeZone::EUROPE); print($d1->format("Y-m-d")); print($d2->format("Y-m-d")); print("\n"); print($d1->diff($d2)->m); print("\n"); print($d1->format("Y-m-d")); print($d3->format("Y-m-d")); print("\n"); print($d1->diff($d3)->m); print("\n"); print($d1->format("Y-m-d")); print($d4->format("Y-m-d")); print("\n"); print($d1->diff($d4)->m); print("\n");
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: DateTime::__construct(): Argument #2 ($timezone) must be of type ?DateTimeZone, int given in /in/FON2b:3 Stack trace: #0 /in/FON2b(3): DateTime->__construct('2015-02-01', 128) #1 {main} thrown in /in/FON2b on line 3
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:
80.9 ms | 401 KiB | 8 Q