當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dumper::terminalColors方法代碼示例

本文整理匯總了PHP中Tracy\Dumper::terminalColors方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dumper::terminalColors方法的具體用法?PHP Dumper::terminalColors怎麽用?PHP Dumper::terminalColors使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tracy\Dumper的用法示例。


在下文中一共展示了Dumper::terminalColors方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 /**
  * @param \Symfony\Component\Console\Input\InputInterface $input
  * @param \Symfony\Component\Console\Output\OutputInterface $output
  * @return int
  * @throws \Exception
  */
 public function run(InputInterface $input = NULL, OutputInterface $output = NULL)
 {
     $input = $input ?: new ArgvInput();
     $output = $output ?: new ConsoleOutput();
     if ($input->hasParameterOption('--debug-mode')) {
         if ($input->hasParameterOption(['--debug-mode=no', '--debug-mode=off', '--debug-mode=false', '--debug-mode=0'])) {
             if ($this->serviceLocator->parameters['debugMode']) {
                 $this->renderException(new InvalidApplicationModeException("The app is running in debug mode. You have to use Kdyby\\Console\\DI\\BootstrapHelper in app/bootstrap.php, " . "Kdyby\\Console cannot switch already running app to production mode . "), $output);
                 return self::INVALID_APP_MODE_EXIT_CODE;
             }
         } else {
             if (!$this->serviceLocator->parameters['debugMode']) {
                 $this->renderException(new InvalidApplicationModeException("The app is running in production mode. You have to use Kdyby\\Console\\DI\\BootstrapHelper in app/bootstrap.php, " . "Kdyby\\Console cannot switch already running app to debug mode."), $output);
                 return self::INVALID_APP_MODE_EXIT_CODE;
             }
         }
     }
     if (class_exists('Tracy\\Dumper') && $input->hasParameterOption('--no-ansi')) {
         Dumper::$terminalColors = FALSE;
     }
     try {
         return parent::run($input, $output);
     } catch (UnknownCommandException $e) {
         $this->renderException($e->getPrevious(), $output);
         list($message) = explode("\n", $e->getMessage());
         Debugger::log($message, Debugger::ERROR);
         return self::INPUT_ERROR_EXIT_CODE;
     } catch (\Exception $e) {
         if (in_array(get_class($e), self::$invalidArgumentExceptions, TRUE) && preg_match('/^(The "-?-?.+" (option|argument) (does not (exist|accept a value)|requires a value)|(Not enough|Too many) arguments.*)\\.$/', $e->getMessage()) === 1) {
             $this->renderException($e, $output);
             Debugger::log($e->getMessage(), Debugger::ERROR);
             return self::INPUT_ERROR_EXIT_CODE;
         } elseif ($app = $this->serviceLocator->getByType('Nette\\Application\\Application', FALSE)) {
             /** @var Nette\Application\Application $app */
             $app->onError($app, $e);
         } else {
             $this->handleException($e, $output);
         }
         return max(min((int) $e->getCode(), 254), 1);
     }
 }
開發者ID:kdyby,項目名稱:console,代碼行數:47,代碼來源:Application.php


注:本文中的Tracy\Dumper::terminalColors方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。