<?php
$lang = 'en';
if (function_exists("timezone_identifiers_list"))
{
$arr_timez_id_lst3 = DateTimeZone::listIdentifiers();
$pt = 'Lista dos identificadores: <br><br>';
$en = 'Timezone identifiers list: <br><br>';
echo $$lang;
echo '<form id="form3" name="form3" method="post" action=""><select name="select">';
foreach( $arr_timez_id_lst3 as $timz3)
{
echo '<option value="' . $timz3 . '">' . $timz3 . '</option>';
}
echo '</select></form>';
}
else
{
$en = 'FUNCTION NOT IMPLEMENTED ON THIS PLATFORM!';
$pt = 'FUNÇÃO NÃO DEFINIDA PARA ESTE AMBIENTE!';
echo '<span style="color:#039;font-size:18px;">' . $$lang . '</span>';
}
?>