• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP phutil_utf8_strtolower函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中phutil_utf8_strtolower函数的典型用法代码示例。如果您正苦于以下问题:PHP phutil_utf8_strtolower函数的具体用法?PHP phutil_utf8_strtolower怎么用?PHP phutil_utf8_strtolower使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了phutil_utf8_strtolower函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: loadPHIDsByTypes

 private function loadPHIDsByTypes($type)
 {
     $objects = id(new PhutilClassMapQuery())->setAncestorClass('PhabricatorFulltextInterface')->execute();
     $normalized_type = phutil_utf8_strtolower($type);
     $matches = array();
     foreach ($objects as $object) {
         $object_class = get_class($object);
         $normalized_class = phutil_utf8_strtolower($object_class);
         if (!strlen($type) || strpos($normalized_class, $normalized_type) !== false) {
             $matches[$object_class] = $object;
         }
     }
     if (!$matches) {
         $all_types = array();
         foreach ($objects as $object) {
             $all_types[] = get_class($object);
         }
         sort($all_types);
         throw new PhutilArgumentUsageException(pht('Type "%s" matches no indexable objects. Supported types are: %s.', $type, implode(', ', $all_types)));
     }
     if (count($matches) > 1 && strlen($type)) {
         throw new PhutilArgumentUsageException(pht('Type "%s" matches multiple indexable objects. Use a more ' . 'specific string. Matching object types are: %s.', $type, implode(', ', array_keys($matches))));
     }
     $phids = array();
     foreach ($matches as $match) {
         $iterator = new LiskMigrationIterator($match);
         foreach ($iterator as $object) {
             $phids[] = $object->getPHID();
         }
     }
     return $phids;
 }
开发者ID:truSense,项目名称:phabricator,代码行数:32,代码来源:PhabricatorSearchManagementIndexWorkflow.php


示例2: normalize

 public static function normalize($slug, $hashtag = false)
 {
     $slug = preg_replace('@/+@', '/', $slug);
     $slug = trim($slug, '/');
     $slug = phutil_utf8_strtolower($slug);
     $ban = "\\x00-\\x19" . "#%&+=?" . " " . "\\\\" . "<>{}\\[\\]" . "'" . '"';
     // In hashtag mode (used for Project hashtags), ban additional characters
     // which cause parsing problems.
     if ($hashtag) {
         $ban .= '`~!@$^*,:;(|)';
     }
     $slug = preg_replace('([' . $ban . ']+)', '_', $slug);
     $slug = preg_replace('@_+@', '_', $slug);
     $parts = explode('/', $slug);
     // Remove leading and trailing underscores from each component, if the
     // component has not been reduced to a single underscore. For example, "a?"
     // converts to "a", but "??" converts to "_".
     foreach ($parts as $key => $part) {
         if ($part != '_') {
             $parts[$key] = trim($part, '_');
         }
     }
     $slug = implode('/', $parts);
     // Specifically rewrite these slugs. It's OK to have a slug like "a..b",
     // but not a slug which is only "..".
     // NOTE: These are explicitly not pht()'d, because they should be stable
     // across languages.
     $replace = array('.' => 'dot', '..' => 'dotdot');
     foreach ($replace as $pattern => $replacement) {
         $pattern = preg_quote($pattern, '@');
         $slug = preg_replace('@(^|/)' . $pattern . '(\\z|/)@', '\\1' . $replacement . '\\2', $slug);
     }
     return $slug . '/';
 }
开发者ID:patelhardik,项目名称:phabricator,代码行数:34,代码来源:PhabricatorSlug.php


示例3: processMailCommands

 private function processMailCommands(PhabricatorMetaMTAReceivedMail $mail, array $command_list)
 {
     $viewer = $this->getActor();
     $object = $this->getMailReceiver();
     $list = MetaMTAEmailTransactionCommand::getAllCommandsForObject($object);
     $map = MetaMTAEmailTransactionCommand::getCommandMap($list);
     $xactions = array();
     foreach ($command_list as $command_argv) {
         $command = head($command_argv);
         $argv = array_slice($command_argv, 1);
         $handler = idx($map, phutil_utf8_strtolower($command));
         if ($handler) {
             $results = $handler->buildTransactions($viewer, $object, $mail, $command, $argv);
             foreach ($results as $result) {
                 $xactions[] = $result;
             }
         } else {
             $valid_commands = array();
             foreach ($list as $valid_command) {
                 $aliases = $valid_command->getCommandAliases();
                 if ($aliases) {
                     foreach ($aliases as $key => $alias) {
                         $aliases[$key] = '!' . $alias;
                     }
                     $aliases = implode(', ', $aliases);
                     $valid_commands[] = pht('!%s (or %s)', $valid_command->getCommand(), $aliases);
                 } else {
                     $valid_commands[] = '!' . $valid_command->getCommand();
                 }
             }
             throw new Exception(pht('The command "!%s" is not a supported mail command. Valid ' . 'commands for this object are: %s.', $command, implode(', ', $valid_commands)));
         }
     }
     return $xactions;
 }
开发者ID:rchicoli,项目名称:phabricator,代码行数:35,代码来源:PhabricatorApplicationTransactionReplyHandler.php


示例4: normalize

 public static function normalize($slug)
 {
     $slug = preg_replace('@/+@', '/', $slug);
     $slug = trim($slug, '/');
     $slug = phutil_utf8_strtolower($slug);
     $slug = preg_replace("@[\\x00-\\x19#%&+=\\\\?<> ]+@", '_', $slug);
     $slug = preg_replace('@_+@', '_', $slug);
     // Remove leading and trailing underscores from each component, if the
     // component has not been reduced to a single underscore. For example, "a?"
     // converts to "a", but "??" converts to "_".
     $parts = explode('/', $slug);
     foreach ($parts as $key => $part) {
         if ($part != '_') {
             $parts[$key] = trim($part, '_');
         }
     }
     $slug = implode('/', $parts);
     // Specifically rewrite these slugs. It's OK to have a slug like "a..b",
     // but not a slug which is only "..".
     // NOTE: These are explicitly not pht()'d, because they should be stable
     // across languages.
     $replace = array('.' => 'dot', '..' => 'dotdot');
     foreach ($replace as $pattern => $replacement) {
         $pattern = preg_quote($pattern, '@');
         $slug = preg_replace('@(^|/)' . $pattern . '(\\z|/)@', '\\1' . $replacement . '\\2', $slug);
     }
     return $slug . '/';
 }
开发者ID:remxcode,项目名称:phabricator,代码行数:28,代码来源:PhabricatorSlug.php


示例5: buildWhereClauseParts

 protected function buildWhereClauseParts(AphrontDatabaseConnection $conn)
 {
     $where = parent::buildWhereClauseParts($conn);
     if ($this->phids !== null) {
         $where[] = qsprintf($conn, 'p.phid IN (%Ls)', $this->phids);
     }
     if ($this->ids !== null) {
         $where[] = qsprintf($conn, 'p.id IN (%Ld)', $this->ids);
     }
     if ($this->repositoryPHIDs !== null) {
         $where[] = qsprintf($conn, 'rpath.repositoryPHID IN (%Ls)', $this->repositoryPHIDs);
     }
     if ($this->ownerPHIDs !== null) {
         $base_phids = $this->ownerPHIDs;
         $projects = id(new PhabricatorProjectQuery())->setViewer($this->getViewer())->withMemberPHIDs($base_phids)->execute();
         $project_phids = mpull($projects, 'getPHID');
         $all_phids = array_merge($base_phids, $project_phids);
         $where[] = qsprintf($conn, 'o.userPHID IN (%Ls)', $all_phids);
     }
     if (strlen($this->namePrefix)) {
         // NOTE: This is a hacky mess, but this column is currently case
         // sensitive and unique.
         $where[] = qsprintf($conn, 'LOWER(p.name) LIKE %>', phutil_utf8_strtolower($this->namePrefix));
     }
     return $where;
 }
开发者ID:JohnnyEstilles,项目名称:phabricator,代码行数:26,代码来源:PhabricatorOwnersPackageQuery.php


示例6: markupText

 public function markupText($text, $children)
 {
     $matches = array();
     preg_match($this->getRegEx(), $text, $matches);
     if (idx($matches, 'showword')) {
         $word = $matches['showword'];
         $show = true;
     } else {
         $word = $matches['hideword'];
         $show = false;
     }
     $class_suffix = phutil_utf8_strtolower($word);
     // This is the "(IMPORTANT)" or "NOTE:" part.
     $word_part = rtrim(substr($text, 0, strlen($matches[0])));
     // This is the actual text.
     $text_part = substr($text, strlen($matches[0]));
     $text_part = $this->applyRules(rtrim($text_part));
     $text_mode = $this->getEngine()->isTextMode();
     if ($text_mode) {
         return $word_part . ' ' . $text_part;
     }
     if ($show) {
         $content = array(phutil_tag('span', array('class' => 'remarkup-note-word'), $word_part), ' ', $text_part);
     } else {
         $content = $text_part;
     }
     return phutil_tag('div', array('class' => 'remarkup-' . $class_suffix), $content);
 }
开发者ID:jasteele12,项目名称:prb_lint_tests,代码行数:28,代码来源:PhutilRemarkupEngineRemarkupNoteBlockRule.php


示例7: getNgramsFromString

 public final function getNgramsFromString($value, $mode)
 {
     $tokens = $this->tokenizeString($value);
     $ngrams = array();
     foreach ($tokens as $token) {
         $token = phutil_utf8_strtolower($token);
         switch ($mode) {
             case 'query':
                 break;
             case 'index':
                 $token = ' ' . $token . ' ';
                 break;
             case 'prefix':
                 $token = ' ' . $token;
                 break;
         }
         $len = strlen($token) - 2;
         for ($ii = 0; $ii < $len; $ii++) {
             $ngram = substr($token, $ii, 3);
             $ngrams[$ngram] = $ngram;
         }
     }
     ksort($ngrams);
     return array_keys($ngrams);
 }
开发者ID:phpengineer,项目名称:phabricator,代码行数:25,代码来源:PhabricatorSearchNgrams.php


示例8: process

 public function process(XHPASTNode $root)
 {
     $aliases = $this->getFunctionAliases();
     $functions = $this->getFunctionCalls($root, array_keys($aliases));
     foreach ($functions as $function) {
         $function_name = $function->getChildByIndex(0);
         $this->raiseLintAtNode($function_name, pht('Alias functions should be avoided.'), $aliases[phutil_utf8_strtolower($function_name->getConcreteString())]);
     }
 }
开发者ID:barcelonascience,项目名称:arcanist,代码行数:9,代码来源:ArcanistAliasFunctionXHPASTLinterRule.php


示例9: normalizeSlug

 private function normalizeSlug($slug)
 {
     // NOTE: We're using phutil_utf8_strtolower() (and not PhabricatorSlug's
     // normalize() method) because this normalization should be only somewhat
     // liberal. We want "#YOLO" to match against "#yolo", but "#\\yo!!lo"
     // should not. normalize() strips out most punctuation and leads to
     // excessively aggressive matches.
     return phutil_utf8_strtolower($slug);
 }
开发者ID:pugong,项目名称:phabricator,代码行数:9,代码来源:PhabricatorProjectProjectPHIDType.php


示例10: tokenizeString

 public static function tokenizeString($string)
 {
     $string = phutil_utf8_strtolower($string);
     $string = trim($string);
     if (!strlen($string)) {
         return array();
     }
     $tokens = preg_split('/\\s+|-/', $string);
     return array_unique($tokens);
 }
开发者ID:denghp,项目名称:phabricator,代码行数:10,代码来源:PhabricatorTypeaheadDatasource.php


示例11: markupKeystrokes

 public function markupKeystrokes(array $matches)
 {
     if (!$this->isFlatText($matches[0])) {
         return $matches[0];
     }
     $keys = explode(' ', $matches[1]);
     foreach ($keys as $k => $v) {
         $v = trim($v, " \n");
         $v = preg_replace('/\\\\(.)/', '\\1', $v);
         if (!strlen($v)) {
             unset($keys[$k]);
             continue;
         }
         $keys[$k] = $v;
     }
     $special = array(array('name' => pht('Command'), 'symbol' => "⌘", 'aliases' => array('cmd', 'command')), array('name' => pht('Option'), 'symbol' => "⌥", 'aliases' => array('opt', 'option')), array('name' => pht('Shift'), 'symbol' => "⇧", 'aliases' => array('shift')), array('name' => pht('Escape'), 'symbol' => "⎋", 'aliases' => array('esc', 'escape')), array('name' => pht('Up'), 'symbol' => "↑", 'heavy' => "⬆", 'aliases' => array('up', 'arrow-up', 'up-arrow', 'north')), array('name' => pht('Tab'), 'symbol' => "⇥", 'aliases' => array('tab')), array('name' => pht('Right'), 'symbol' => "→", 'heavy' => "➡", 'aliases' => array('right', 'right-arrow', 'arrow-right', 'east')), array('name' => pht('Left'), 'symbol' => "←", 'heavy' => "⬅", 'aliases' => array('left', 'left-arrow', 'arrow-left', 'west')), array('name' => pht('Down'), 'symbol' => "↓", 'heavy' => "⬇", 'aliases' => array('down', 'down-arrow', 'arrow-down', 'south')), array('name' => pht('Up Right'), 'symbol' => "↗", 'heavy' => "⬈", 'aliases' => array('up-right', 'upright', 'up-right-arrow', 'upright-arrow', 'arrow-up-right', 'arrow-upright', 'northeast', 'north-east')), array('name' => pht('Down Right'), 'symbol' => "↘", 'heavy' => "⬊", 'aliases' => array('down-right', 'downright', 'down-right-arrow', 'downright-arrow', 'arrow-down-right', 'arrow-downright', 'southeast', 'south-east')), array('name' => pht('Down Left'), 'symbol' => "↙", 'heavy' => "⬋", 'aliases' => array('down-left', 'downleft', 'down-left-arrow', 'downleft-arrow', 'arrow-down-left', 'arrow-downleft', 'southwest', 'south-west')), array('name' => pht('Up Left'), 'symbol' => "↖", 'heavy' => "⬉", 'aliases' => array('up-left', 'upleft', 'up-left-arrow', 'upleft-arrow', 'arrow-up-left', 'arrow-upleft', 'northwest', 'north-west')));
     $map = array();
     foreach ($special as $spec) {
         foreach ($spec['aliases'] as $alias) {
             $map[$alias] = $spec;
         }
     }
     $is_text = $this->getEngine()->isTextMode();
     $is_html_mail = $this->getEngine()->isHTMLMailMode();
     if ($is_html_mail) {
         $key_style = array('display: inline-block;', 'min-width: 1em;', 'padding: 4px 5px 5px;', 'font-weight: normal;', 'font-size: 0.8rem;', 'text-align: center;', 'text-decoration: none;', 'line-height: 0.6rem;', 'border-radius: 3px;', 'box-shadow: inset 0 -1px 0 rgba(71, 87, 120, 0.08);', 'user-select: none;', 'background: #f7f7f7;', 'border: 1px solid #C7CCD9;');
         $key_style = implode(' ', $key_style);
         $join_style = array('padding: 0 4px;', 'color: #92969D;');
         $join_style = implode(' ', $join_style);
     } else {
         $key_style = null;
         $join_style = null;
     }
     $parts = array();
     foreach ($keys as $k => $v) {
         $normal = phutil_utf8_strtolower($v);
         if (isset($map[$normal])) {
             $spec = $map[$normal];
         } else {
             $spec = array('name' => null, 'symbol' => $v);
         }
         if ($is_text) {
             $parts[] = '[' . $spec['symbol'] . ']';
         } else {
             $parts[] = phutil_tag('kbd', array('title' => $spec['name'], 'style' => $key_style), $spec['symbol']);
         }
     }
     if ($is_text) {
         $parts = implode(' + ', $parts);
     } else {
         $glue = phutil_tag('span', array('class' => 'kbd-join', 'style' => $join_style), '+');
         $parts = phutil_implode_html($glue, $parts);
     }
     return $this->getEngine()->storeText($parts);
 }
开发者ID:endlessm,项目名称:phabricator,代码行数:55,代码来源:PhabricatorKeyboardRemarkupRule.php


示例12: getLintCodeFromLinterConfigurationKey

 protected function getLintCodeFromLinterConfigurationKey($code)
 {
     switch (phutil_utf8_strtolower($code)) {
         case 'parse':
             return self::LINT_PARSE_ERROR;
         case 'fatal':
             return self::LINT_FATAL_ERROR;
         default:
             throw new Exception(pht('Unrecognized lint message code: "%s"', $code));
     }
 }
开发者ID:barcelonascience,项目名称:arcanist,代码行数:11,代码来源:ArcanistPhpLinter.php


示例13: getHeaderValue

 public function getHeaderValue($key, $default = null)
 {
     $key = phutil_utf8_strtolower($key);
     foreach ($this->headers as $header) {
         list($hkey, $value) = $header;
         if (phutil_utf8_strtolower($hkey) === $key) {
             return $value;
         }
     }
     return $default;
 }
开发者ID:endlessm,项目名称:libphutil,代码行数:11,代码来源:PhutilGitHubResponse.php


示例14: markupText

 public function markupText($text, $children)
 {
     $matches = array();
     preg_match($this->getRegEx(), $text, $matches);
     if (idx($matches, 'showword')) {
         $word = $matches['showword'];
         $show = true;
     } else {
         $word = $matches['hideword'];
         $show = false;
     }
     $class_suffix = phutil_utf8_strtolower($word);
     // This is the "(IMPORTANT)" or "NOTE:" part.
     $word_part = rtrim(substr($text, 0, strlen($matches[0])));
     // This is the actual text.
     $text_part = substr($text, strlen($matches[0]));
     $text_part = $this->applyRules(rtrim($text_part));
     $text_mode = $this->getEngine()->isTextMode();
     $html_mail_mode = $this->getEngine()->isHTMLMailMode();
     if ($text_mode) {
         return $word_part . ' ' . $text_part;
     }
     if ($show) {
         $content = array(phutil_tag('span', array('class' => 'remarkup-note-word'), $word_part), ' ', $text_part);
     } else {
         $content = $text_part;
     }
     if ($html_mail_mode) {
         if ($class_suffix == 'important') {
             $attributes = array('style' => 'margin: 16px 0;
         padding: 12px;
         border-left: 3px solid #c0392b;
         background: #f4dddb;');
         } else {
             if ($class_suffix == 'note') {
                 $attributes = array('style' => 'margin: 16px 0;
         padding: 12px;
         border-left: 3px solid #2980b9;
         background: #daeaf3;');
             } else {
                 if ($class_suffix == 'warning') {
                     $attributes = array('style' => 'margin: 16px 0;
         padding: 12px;
         border-left: 3px solid #f1c40f;
         background: #fdf5d4;');
                 }
             }
         }
     } else {
         $attributes = array('class' => 'remarkup-' . $class_suffix);
     }
     return phutil_tag('div', $attributes, $content);
 }
开发者ID:barcelonascience,项目名称:libphutil,代码行数:53,代码来源:PhutilRemarkupNoteBlockRule.php


示例15: filterMethods

 private function filterMethods(array $methods)
 {
     foreach ($methods as $key => $method) {
         $application = $method->getApplication();
         if (!$application) {
             continue;
         }
         if (!$application->isInstalled()) {
             unset($methods[$key]);
         }
     }
     $status = array(ConduitAPIMethod::METHOD_STATUS_STABLE => $this->isStable, ConduitAPIMethod::METHOD_STATUS_DEPRECATED => $this->isDeprecated, ConduitAPIMethod::METHOD_STATUS_UNSTABLE => $this->isUnstable);
     // Only apply status filters if any of them are set.
     if (array_filter($status)) {
         foreach ($methods as $key => $method) {
             $keep = idx($status, $method->getMethodStatus());
             if (!$keep) {
                 unset($methods[$key]);
             }
         }
     }
     if ($this->applicationNames) {
         $map = array_fuse($this->applicationNames);
         foreach ($methods as $key => $method) {
             $needle = $method->getApplicationName();
             $needle = phutil_utf8_strtolower($needle);
             if (empty($map[$needle])) {
                 unset($methods[$key]);
             }
         }
     }
     if ($this->nameContains) {
         $needle = phutil_utf8_strtolower($this->nameContains);
         foreach ($methods as $key => $method) {
             $haystack = $method->getAPIMethodName();
             $haystack = phutil_utf8_strtolower($haystack);
             if (strpos($haystack, $needle) === false) {
                 unset($methods[$key]);
             }
         }
     }
     if ($this->methods) {
         $map = array_fuse($this->methods);
         foreach ($methods as $key => $method) {
             $needle = $method->getAPIMethodName();
             if (empty($map[$needle])) {
                 unset($methods[$key]);
             }
         }
     }
     return $methods;
 }
开发者ID:fengshao0907,项目名称:phabricator,代码行数:52,代码来源:PhabricatorConduitMethodQuery.php


示例16: getGitHubPath

 public static function getGitHubPath($uri)
 {
     $uri_object = new PhutilURI($uri);
     $domain = $uri_object->getDomain();
     $domain = phutil_utf8_strtolower($domain);
     switch ($domain) {
         case 'github.com':
         case 'www.github.com':
             return $uri_object->getPath();
         default:
             return null;
     }
 }
开发者ID:rchicoli,项目名称:phabricator,代码行数:13,代码来源:HarbormasterCircleCIBuildStepImplementation.php


示例17: getFigletMap

 private static function getFigletMap()
 {
     $root = dirname(phutil_get_library_root('phabricator'));
     $dirs = array($root . '/externals/figlet/fonts/', $root . '/externals/pear-figlet/fonts/', $root . '/resources/figlet/custom/');
     $map = array();
     foreach ($dirs as $dir) {
         foreach (Filesystem::listDirectory($dir, false) as $file) {
             if (preg_match('/\\.flf\\z/', $file)) {
                 $name = phutil_utf8_strtolower($file);
                 $name = preg_replace('/\\.flf\\z/', '', $name);
                 $map[$name] = $dir . $file;
             }
         }
     }
     return $map;
 }
开发者ID:remxcode,项目名称:phabricator,代码行数:16,代码来源:PhabricatorRemarkupFigletBlockInterpreter.php


示例18: getTaskPriorityKeywordsMap

 /**
  * Get the priorities and their command keywords.
  *
  * @return map Priorities to lists of command keywords.
  */
 public static function getTaskPriorityKeywordsMap()
 {
     $map = self::getConfig();
     foreach ($map as $key => $spec) {
         $words = idx($spec, 'keywords', array());
         if (!is_array($words)) {
             $words = array($words);
         }
         foreach ($words as $word_key => $word) {
             $words[$word_key] = phutil_utf8_strtolower($word);
         }
         $words = array_unique($words);
         $map[$key] = $words;
     }
     return $map;
 }
开发者ID:truSense,项目名称:phabricator,代码行数:21,代码来源:ManiphestTaskPriority.php


示例19: getDisableANSI

 public static function getDisableANSI()
 {
     if (self::$disableANSI === null) {
         $term = phutil_utf8_strtolower(getenv("TERM"));
         if (phutil_is_windows() && $term !== "cygwin" && $term !== "ansi") {
             self::$disableANSI = true;
         } else {
             if (function_exists('posix_isatty') && !posix_isatty(STDOUT)) {
                 self::$disableANSI = true;
             } else {
                 self::$disableANSI = false;
             }
         }
     }
     return self::$disableANSI;
 }
开发者ID:jasteele12,项目名称:prb_lint_tests,代码行数:16,代码来源:PhutilConsoleFormatter.php


示例20: execute

 public function execute(PhutilArgumentParser $args)
 {
     $config_key = 'phabricator.developer-mode';
     if (!PhabricatorEnv::getEnvConfig($config_key)) {
         throw new PhutilArgumentUsageException(pht('lipsum is a development and testing tool and may only be run ' . 'on installs in developer mode. Enable "%s" in your configuration ' . 'to enable lipsum.', $config_key));
     }
     $all_generators = id(new PhutilClassMapQuery())->setAncestorClass('PhabricatorTestDataGenerator')->execute();
     $argv = $args->getArg('args');
     $all = 'all';
     if (!$argv) {
         $names = mpull($all_generators, 'getGeneratorName');
         sort($names);
         $list = id(new PhutilConsoleList())->setWrap(false)->addItems($names);
         id(new PhutilConsoleBlock())->addParagraph(pht('Choose which type or types of test data you want to generate, ' . 'or select "%s".', $all))->addList($list)->draw();
         return 0;
     }
     $generators = array();
     foreach ($argv as $arg_original) {
         $arg = phutil_utf8_strtolower($arg_original);
         $match = false;
         foreach ($all_generators as $generator) {
             $name = phutil_utf8_strtolower($generator->getGeneratorName());
             if ($arg == $all) {
                 $generators[] = $generator;
                 $match = true;
                 break;
             }
             if (strpos($name, $arg) !== false) {
                 $generators[] = $generator;
                 $match = true;
                 break;
             }
         }
         if (!$match) {
             throw new PhutilArgumentUsageException(pht('Argument "%s" does not match the name of any generators.', $arg_original));
         }
     }
     echo tsprintf("**<bg:blue> %s </bg>** %s\n", pht('GENERATORS'), pht('Selected generators: %s.', implode(', ', mpull($generators, 'getGeneratorName'))));
     echo tsprintf("**<bg:yellow> %s </bg>** %s\n", pht('WARNING'), pht('This command generates synthetic test data, including user ' . 'accounts. It is intended for use in development environments ' . 'so you can test features more easily. There is no easy way to ' . 'delete this data or undo the effects of this command. If you run ' . 'it in a production environment, it will pollute your data with ' . 'large amounts of meaningless garbage that you can not get rid of.'));
     $prompt = pht('Are you sure you want to generate piles of garbage?');
     if (!phutil_console_confirm($prompt, true)) {
         return;
     }
     echo tsprintf("**<bg:green> %s </bg>** %s\n", pht('LIPSUM'), pht('Generating synthetic test objects forever. ' . 'Use ^C to stop when satisfied.'));
     $this->generate($generators);
 }
开发者ID:truSense,项目名称:phabricator,代码行数:46,代码来源:PhabricatorLipsumGenerateWorkflow.php



注:本文中的phutil_utf8_strtolower函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP phutil_utf8ize函数代码示例发布时间:2022-05-15
下一篇:
PHP phutil_utf8_strlen函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap