从TimeZone_Identifier语言 - php中检索语言环境



是否有一种简单的方法可以从timezone_identifier检索该语言环境?

例如:

date_default_timezone_set('Europe/Berlin');

在这种情况下的语言环境应de_DE

正如 deceze所说的那样。但是您可以从时区获取位置信息。正如php.net所说

$tz = new DateTimeZone("Europe/Prague"); 
print_r($tz->getLocation());
print_r(timezone_location_get($tz));

将输出

Array
(
 [country_code] => CZ
 [latitude] => 50.08333
 [longitude] => 14.43333
 [comments] => 
)
Array
(
 [country_code] => CZ
 [latitude] => 50.08333
 [longitude] => 14.43333
 [comments] => 
)

否,因为没有这样的1:1相关性。以比利时为例,他们在同一时区正式讲三种语言。

相关内容

  • 没有找到相关文章

最新更新