3v4l.org

run code in 300+ PHP versions simultaneously
<?php //Tinker away! $dateString = "4 Квітень 2009"; $dateString = "Wednesday 22nd of May 2024 05:33:36 PM"; date_default_timezone_set('UTC'); // сейчас $date = new DateTimeImmutable($dateString); // Выведет что-то подобное: Wednesday echo $date->format('l'), "\n"; // Выведет что-то подобное: Wednesday 19th of October 2022 08:40:48 AM echo $date->format('l jS \o\f F Y h:i:s A'), "\n"; /* Использование констант в параметре format */ // Выведет что-то подобное: Wed, 19 Oct 2022 08:40:48 +0000 echo $date->format(DateTimeInterface::RFC2822), "\n";
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught DateMalformedStringException: Failed to parse time string (Wednesday 22nd of May 2024 05:33:36 PM) at position 10 (2): Unexpected character in /in/25mFh:9 Stack trace: #0 /in/25mFh(9): DateTimeImmutable->__construct('Wednesday 22nd ...') #1 {main} thrown in /in/25mFh 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:
28.05 ms | 405 KiB | 5 Q