3v4l.org

run code in 300+ PHP versions simultaneously
<?php $locale = 'us'; var_dump(($fmt = new IntlDateFormatter($locale, IntlDateFormatter::FULL, IntlDateFormatter::NONE))->format(time())); $locale = 'fi'; var_dump(($fmt = new IntlDateFormatter($locale, IntlDateFormatter::FULL, IntlDateFormatter::NONE))->format(time())); $locale = 'da'; var_dump(($fmt = new IntlDateFormatter($locale, IntlDateFormatter::FULL, IntlDateFormatter::NONE))->format(time())); $locale = 'nb'; var_dump(($fmt = new IntlDateFormatter($locale, IntlDateFormatter::FULL, IntlDateFormatter::NONE))->format(time()));
Output for 8.2.9
string(23) "Monday, August 21, 2023" string(27) "maanantai 21. elokuuta 2023" string(26) "mandag den 21. august 2023" string(22) "mandag 21. august 2023"
Output for 8.1.26
Fatal error: Uncaught Error: Found unconstructed IntlDateFormatter in /in/918e6:5 Stack trace: #0 /in/918e6(5): IntlDateFormatter->format(1702411157) #1 {main} thrown in /in/918e6 on line 5
Process exited with code 255.
Output for 5.6.40
Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR) in /in/918e6 on line 5
Process exited with code 255.

preferences:
55.59 ms | 408 KiB | 5 Q