当前位置: 首页>>代码示例>>PHP>>正文


PHP Parse::execute方法代码示例

本文整理汇总了PHP中Parse::execute方法的典型用法代码示例。如果您正苦于以下问题:PHP Parse::execute方法的具体用法?PHP Parse::execute怎么用?PHP Parse::execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Parse的用法示例。


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

示例1: execute

 /**
  * Execute the argument parsing given the input from the command line
  *     in $_SERVER['argv']
  *
  * @param array $args Arguments list from the PHP input
  * @return array Parsed argument results
  */
 public function execute($args, array $config = array())
 {
     // Strip off the first item, it's the script name
     array_shift($args);
     $values = [];
     // Set any defaults we may have
     if (isset($config['default'])) {
         foreach ($config['default'] as $key => $value) {
             $values[$key] = $value;
         }
     }
     foreach ($args as $argument) {
         list($name, $value) = Parse::execute($argument);
         // see if we can find a matching option
         if ($name !== null) {
             $values[$name] = $value;
         } else {
             $values[] = $value;
         }
     }
     // See if we have ann required params
     if (isset($config['required'])) {
         $missing = [];
         foreach ($config['required'] as $index => $param) {
             if (!isset($values[$param])) {
                 $missing[] = $param;
             }
         }
         if (!empty($missing)) {
             throw new Exception\MissingRequiredException('Missing required params: ' . implode(', ', $missing));
         }
     }
     return $values;
 }
开发者ID:Stunt,项目名称:cmd,代码行数:41,代码来源:Command.php

示例2: execute

 /**
  * (non-PHPdoc)
  * @see \DasRed\Translation\Command\Executor\Log\Parse::execute()
  */
 public function execute()
 {
     $file = $this->getArguments()[1];
     if (file_exists($file) === true) {
         unlink($file);
     }
     $this->write('File', 'LineNumber', 'Key', 'Locale', 'Count of Matches');
     return parent::execute();
 }
开发者ID:dasred,项目名称:translation,代码行数:13,代码来源:ToCsv.php

示例3: testParseValidArgumentString

 /**
  * @dataProvider argumentStringProvider
  */
 public function testParseValidArgumentString($argument, $result)
 {
     $parse = new Parse();
     $parseResult = $parse->execute($argument);
     $this->assertEquals($parseResult, $result);
 }
开发者ID:Stunt,项目名称:cmd,代码行数:9,代码来源:ParseTest.php


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