3v4l.org

run code in 300+ PHP versions simultaneously
<?php $locales = [ 'pl_PL', 'en-US']; function createLocalizedMonthName( $month, $locale, $format = "MMMM"){ $date = DateTime::createFromFormat("!m", $month); $dateFormatter = new IntlDateFormatter($locale,IntlDateFormatter::FULL, IntlDateFormatter::FULL); $dateFormatter->setPattern($format); return $dateFormatter->format($date); } foreach( $locales as $locale){ foreach (range(1, 10) as $monthNumber) { echo $monthNumber . " - " .createLocalizedMonthName($monthNumber,$locale) . PHP_EOL; } echo PHP_EOL. PHP_EOL; }
Output for 5.4.2 - 5.4.45, 5.5.24 - 5.5.28, 5.5.31 - 5.5.33, 5.5.35, 5.6.8 - 5.6.12, 5.6.16 - 5.6.19, 5.6.21 - 5.6.28, 7.0.0 - 7.0.4, 7.0.6 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
1 - stycznia 2 - lutego 3 - marca 4 - kwietnia 5 - maja 6 - czerwca 7 - lipca 8 - sierpnia 9 - września 10 - października 1 - January 2 - February 3 - March 4 - April 5 - May 6 - June 7 - July 8 - August 9 - September 10 - October
Output for 8.0.13
Fatal error: Uncaught Error: Class "IntlDateFormatter" not found in /in/Atm6f:6 Stack trace: #0 /in/Atm6f(13): createLocalizedMonthName(1, 'pl_PL') #1 {main} thrown in /in/Atm6f on line 6
Process exited with code 255.
Output for 7.0.5, 7.3.32 - 7.3.33, 7.4.33
Fatal error: Uncaught Error: Class 'IntlDateFormatter' not found in /in/Atm6f:6 Stack trace: #0 /in/Atm6f(13): createLocalizedMonthName(1, 'pl_PL') #1 {main} thrown in /in/Atm6f on line 6
Process exited with code 255.
Output for 5.5.29 - 5.5.30, 5.5.34, 5.6.13 - 5.6.15, 5.6.20
Fatal error: Class 'IntlDateFormatter' not found in /in/Atm6f on line 6
Process exited with code 255.

preferences:
176.65 ms | 402 KiB | 226 Q