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


PHP Application::run方法代码示例

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


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

示例1: runCommand

 /**
  * Runs a command and returns it output
  *
  * @param \Symfony\Component\HttpKernel\Client $client
  * @param                                      $command
  *
  * @return string|\Symfony\Component\Console\Output\StreamOutput
  */
 public function runCommand(Client $client, $command)
 {
     $application = new Application($client->getKernel());
     $application->setAutoExit(false);
     $fp = tmpfile();
     $input = new StringInput($command);
     $output = new StreamOutput($fp);
     $application->run($input, $output);
     fseek($fp, 0);
     $output = '';
     while (!feof($fp)) {
         $output = fread($fp, 4096);
     }
     fclose($fp);
     return $output;
 }
开发者ID:rajeshpillai,项目名称:dfe-common,代码行数:24,代码来源:CommandTestCase.php

示例2: run

 /**
  * Runs the current application.
  *
  * @param InputInterface  $input  An Input instance
  * @param OutputInterface $output An Output instance
  *
  * @throws \Exception When doRun returns Exception
  *
  * @return int 0 if everything went fine, or an error code
  */
 public function run(InputInterface $input = null, OutputInterface $output = null)
 {
     try {
         return parent::run($input, $output);
     } catch (Exception $e) {
         if ($this->isAjax() === false) {
             throw $e;
         }
         while ($prevException = $e->getPrevious()) {
             $e = $prevException;
         }
         $this->renderException($e, $output);
         return 1;
     } catch (Throwable $e) {
         if ($this->isAjax() === false) {
             throw $e;
         }
         $e = new FatalThrowableError($e);
         $this->renderException($e, $output);
         return 1;
     }
 }
开发者ID:recca0120,项目名称:laravel-terminal,代码行数:32,代码来源:Application.php

示例3: run

 /**
  * Runs the current application.
  *
  * @param \Symfony\Component\Console\InputInterface $input An Input instance
  * @param \Symfony\Component\Console\OutputInterface $output An Output instance
  * @return int 0 if everything went fine, or an error code
  * @throws \Exception When doRun returns Exception
  * @api 
  * @static 
  */
 public static function run($input = null, $output = null)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::run($input, $output);
 }
开发者ID:nmkr,项目名称:basic-starter,代码行数:15,代码来源:_ide_helper.php

示例4: handle

 /**
  * Handle an incoming console command.
  *
  * @param \Symfony\Component\Console\Input\InputInterface   $input
  * @param \Symfony\Component\Console\Output\OutputInterface $output
  *
  * @return int
  */
 public function handle($input, $output = null)
 {
     return $this->artisan->run($input, $output);
 }
开发者ID:recca0120,项目名称:laravel-terminal,代码行数:12,代码来源:Kernel.php


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