从php中的Intl扩展获取CLDR信息

时间:2015-07-18 10:57:51

标签: php intl cldr

之前我使用过Zend_Locale但似乎PHP intl扩展名有cldr信息。

我需要获得一些信息,例如每种语言的可用国家? 例如,enUSUKGBfaIRAF以及有关CLDR项目的更多数据

国家/地区名称,每种语言的时区列表以及CLDR xml文件中存在的更多数据。

它嵌入在php intl上,或者我可以下载并将它们绑定到类或方法上吗?

哪个对象或方法会在PHP intl extension上向我提供此信息?

CLDR information

1 个答案:

答案 0 :(得分:5)

我提出了一个解决方案,起点是区域设置。

您可以使用getLocales方法获取所有区域设置的列表。 $locales = ResourceBundle::getLocales('');请参见此处:enter image description here

然后,您可以使用$countryName = Locale::getDisplayRegion($locale, 'en');获取每个区域设置的国家/地区名称,也可以使用Locale::getDisplayLanguage ( $locale )获取语言名称,依此类推。见这里:http://php.net/manual/en/resourcebundle.locales.php

例如,我设法使用以下代码匹配许多时区名称;

<?php
/* fill the array with values from 
https://gist.github.com/vxnick/380904#gistcomment-1433576
Unfortunately I couldn't manage to find a proper
way to convert countrynames to short codes
*/
$countries = [];
$locales = ResourceBundle::getLocales('');

foreach ($locales as $l => $locale) {
    $countryName = Locale::getDisplayRegion($locale, 'en');
    $countryCode = array_search($countryName, $countries);
    if($countryCode !== false) {
        $timezone_identifiers = DateTimeZone::listIdentifiers( DateTimeZone::PER_COUNTRY, $countryCode);
        echo "----------------".PHP_EOL;
        echo $countryName.PHP_EOL;
        echo Locale::getDisplayLanguage ( $locale ).PHP_EOL;
        var_dump($timezone_identifiers);

    }
}

我知道这不是最好的答案,但至少这可能会给你一个启动。

<强>更新

要获取每个地区的国家/地区名称,您可以尝试使用此地址;

<?php
$locales = ResourceBundle::getLocales('');
foreach ($locales as $l => $locale) {
    $countryName = Locale::getDisplayRegion($locale, 'en');
    echo $locale."===>".$countryName.PHP_EOL;
} 

更新2

收集日期名称,月份名称,每个区域的货币

$locales = ResourceBundle::getLocales('');

foreach ($locales as $l => $locale) {
    echo "============= ".PHP_EOL;
    echo "Locale:". $locale. PHP_EOL;
    echo "Language: ".Locale::getDisplayLanguage($locale, 'en');
    echo PHP_EOL;
    $formatter = new NumberFormatter($locale, NumberFormatter::CURRENCY); 
    echo "Currency: ".$formatter->getTextAttribute(NumberFormatter::CURRENCY_CODE); 
    echo PHP_EOL;       

    echo PHP_EOL."Days :".PHP_EOL;
    $dt = new DateTime('this sunday');
    for($i = 0; $i<=6; $i++) {
        echo IntlDateFormatter::formatObject($dt, "eeee", $locale);
        $dt->add(new DateInterval('P1D'));
        echo PHP_EOL;
    }

    echo PHP_EOL."Months :".PHP_EOL;
    $dt = new DateTime('01/01/2015');
    for($i = 0; $i<12; $i++) {
        echo IntlDateFormatter::formatObject($dt, "MMMM", $locale);
        $dt->add(new DateInterval('P1M'));
        echo PHP_EOL;
    }
}

据我读到的文档,用户必须使用上述方法收集每个语言环境信息。有一个图书馆可以有益于这个目的。 http://php.net/manual/en/class.locale.php