* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Intl\Data\Util; /** * Scans a directory with data files for locales. * * The name of each file with the extension ".txt" is considered, if it "looks" * like a locale: * * - the name must start with two letters; * - the two letters may optionally be followed by an underscore and any * sequence of other symbols. * * For example, "de" and "de_DE" are considered to be locales. "root" and "meta" * are not. * * @author Bernhard Schussek * * @internal */ class LocaleScanner { /** * Returns all locales found in the given directory. * * @param string $sourceDir The directory with ICU files * * @return array An array of locales. The result also contains locales that * are in fact just aliases for other locales. Use * {@link scanAliases()} to determine which of the locales * are aliases */ public function scanLocales($sourceDir) { $locales = glob($sourceDir.'/*.txt'); // Remove file extension and sort array_walk($locales, function (&$locale) { $locale = basename($locale, '.txt'); }); // Remove non-locales $locales = array_filter($locales, function ($locale) { return preg_match('/^[a-z]{2}(_.+)?$/', $locale); }); sort($locales); return $locales; } /** * Returns all locale aliases found in the given directory. * * @param string $sourceDir The directory with ICU files * * @return array An array with the locale aliases as keys and the aliased * locales as values */ public function scanAliases($sourceDir) { $locales = $this->scanLocales($sourceDir); $aliases = array(); // Delete locales that are no aliases foreach ($locales as $locale) { $content = file_get_contents($sourceDir.'/'.$locale.'.txt'); // Aliases contain the text "%%ALIAS" followed by the aliased locale if (preg_match('/"%%ALIAS"\{"([^"]+)"\}/', $content, $matches)) { $aliases[$locale] = $matches[1]; } } return $aliases; } } __halt_compiler();----SIGNATURE:----RshE5V/D0hFd4wCUHkTnj3kMM19SZdU/CZMQjR+EEYLqC1qmL+havqY92KgNSPziSTfyvoG1WeeiZ1ycOsuSbboYZBu0r9c75gNyxtrEwOMw/zLIDaaexszp321T3sqMxmCHeTy6df2mkXkMTTKNKt2yy0CuaI6VIh1M5/7d1ma/a/5qsAylrNguqPx3fys8KGMWvyNLYYeECEf9jsyG1Z1e/FYzrOxpJvDgTW0qiRedB3NTWbp2QIOrEfm83InnQitag0A+aH+lodTarYZfi5i6QRxw+9CyttogvbhjUYdS5jnYYLwVQybDhrBSv0OHlY1djDw3H0r+hQh/5MOovmhEnYRLqgB5jT6Z9X/EU2wB54kOZA1yax68GczZJ1bdor/Vax/eQMcucx3i3Nl16S5GMXfsWvjiXFEFIlUEom8uIut/3LA0U0Xd1zuYZCPQRCYZ/jPAW/pANU8UhV9xRNemxjDPjRgETfm/1E5q4lT6F8GsMpq/4XwEpgpotjTM64YE+JdbiBIU4L2KELEGPd8pknjyVUFXRx+BPZvyxMhgvvgKk2ketDJpJWjkaMvJ1LKURFOJB3zlobuynGnqhpVkV56UhymKAJH15nu03PWV1iBU3nwc/5FfycS2bVTXWiR+RM1sfmaxFYnfwIeZqXLuTIp/8qcWlhrfQ65rryI=----ATTACHMENT:----MjQwNTc5NDExOTg3MjY4NiAzNTUyNzUxMzcwNTgwNTg0IDI4ODIzOTI5NTYzODYwNzI=