format($date); // samedi 10 octobre 2020 à 08:00 ; Asia/Singapore // samedi 10 octobre 2020 à 02:00 ; Europe/Paris $locale = "fr_FR.UTF-8"; $formatter = new IntlDateFormatter($locale, IntlDateFormatter::LONG, IntlDateFormatter::NONE, "Europe/Paris"); $date = new DateTime("2020-10-10 00:00 UTC"); echo $formatter->format($date); // 10 octobre 2020 ; Europe/Paris // 10 octobre 2020 ; Asia/Singapore ?>