本文整理汇总了PHP中AppLocale::_getAllLocalesCache方法的典型用法代码示例。如果您正苦于以下问题:PHP AppLocale::_getAllLocalesCache方法的具体用法?PHP AppLocale::_getAllLocalesCache怎么用?PHP AppLocale::_getAllLocalesCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppLocale
的用法示例。
在下文中一共展示了AppLocale::_getAllLocalesCache方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
/**
* Retrieves locale data from the locales cache.
* @return array
*/
function &_getAllLocalesCacheContent()
{
static $contents = false;
if ($contents === false) {
$allLocalesCache =& AppLocale::_getAllLocalesCache();
$contents = $allLocalesCache->getContents();
}
return $contents;
}
示例2: array
/**
* Return a list of all available locales.
* @return array
*/
function &getAllLocales()
{
$cache =& AppLocale::_getAllLocalesCache();
$rawContents = $cache->getContents();
$allLocales = array();
foreach ($rawContents as $locale => $contents) {
$allLocales[$locale] = $contents['name'];
}
// if client encoding is set to iso-8859-1, transcode locales from utf8
if (LOCALE_ENCODING == "iso-8859-1") {
$allLocales = array_map('utf8_decode', $allLocales);
}
return $allLocales;
}