3v4l.org

run code in 300+ PHP versions simultaneously
<?php //Tinker away! $dateString = "4 Квітень 2009"; $dateString = "4 Август 2009"; 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 (4 Август 2009) at position 0 (4): Unexpected character in /in/G7jaR:9 Stack trace: #0 /in/G7jaR(9): DateTimeImmutable->__construct('4 \xD0\x90\xD0\xB2\xD0\xB3\xD1\x83\xD1\x81\xD1\x82 ...') #1 {main} thrown in /in/G7jaR 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.41 ms | 405 KiB | 5 Q