本文整理汇总了PHP中Cli::parseLanguageCodes方法的典型用法代码示例。如果您正苦于以下问题:PHP Cli::parseLanguageCodes方法的具体用法?PHP Cli::parseLanguageCodes怎么用?PHP Cli::parseLanguageCodes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cli
的用法示例。
在下文中一共展示了Cli::parseLanguageCodes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
if (isset($options['threshold']) && intval($options['threshold'])) {
$threshold = $options['threshold'];
} else {
$threshold = false;
}
if (isset($options['no-location'])) {
$noLocation = '--no-location ';
} else {
$noLocation = '';
}
if (isset($options['no-fuzzy'])) {
$noFuzzy = true;
} else {
$noFuzzy = false;
}
$reqLangs = Cli::parseLanguageCodes($options['lang']);
$groups = array();
// @todo FIXME: Code duplication with sync-group.php
if (isset($options['group'])) {
// Explode parameter
$groupIds = explode(',', trim($options['group']));
// Get groups and add groups to array
foreach ($groupIds as $groupId) {
$group = MessageGroups::getGroup($groupId);
if ($group !== null) {
$groups[$groupId] = $group;
} else {
STDERR("Invalid group {$groupId}");
}
}
} else {