Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
Locale::getKeywords
locale_get_keywords
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
Locale::getKeywords -- locale_get_keywords — Gets the keywords for the input locale
Описание
Объектно-ориентированный стиль
public static array Locale::getKeywords ( string $locale )Процедурный стиль
array locale_get_keywords ( string $locale )Gets the keywords for the input locale.
Список параметров
locale - The locale to extract the keywords from
Возвращаемые значения
Associative array containing the keyword-value pairs for this locale
Примеры
Пример #1 locale_get_keywords() example
$keywords_arr = locale_get_keywords( 'de_DE@currency=EUR;collation=PHONEBOOK' );
if ($keywords_arr) {
foreach ($keywords_arr as $key => $value) {
echo "$key = $value\n";
}
}
Пример #2 OO example
$keywords_arr = Locale::getKeywords( 'de_DE@currency=EUR;collation=PHONEBOOK' );
if ($keywords_arr) {
foreach( $keywords_arr as $key => $value){
echo "$key = $value\n";
}
}
Результат выполнения данного примера:
collation = PHONEBOOK
currency = EUR
Смотрите также
- locale_get_all_variants() - Gets the variants for the input locale
User Contributed Notes
There are no user contributed notes for this page.
Описание класса locale, примеры использования класса locale.
Описание на ru2.php.netОписание на php.ru