I am trying to get current time for all PHP standard timezones. I am using below code to get current time for all timezones.
$dateTimeObj = new DateTime( "now", new DateTimeZone( $timezoneName ) );
return $dateTimeObj->format("D, g:i a");
$dateTimeObj->format() returns false when $timezoneName is one of the below
America/Metlakatla,
America/North_Dakota/Beulah,
America/Sitka,
Why this happens?