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


PHP Terminus::isTest方法代碼示例

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


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

示例1: __construct

 /**
  * Instantiates object, sets cache and session
  *
  * @return [TerminusCommand] $this
  */
 public function __construct()
 {
     //Load commonly used data from cache
     $this->cache = Terminus::getCache();
     $this->logger = Terminus::getLogger();
     $this->outputter = Terminus::getOutputter();
     $this->session = Session::instance();
     if (!Terminus::isTest()) {
         $this->checkForUpdate();
     }
 }
開發者ID:andrefy,項目名稱:cli,代碼行數:16,代碼來源:class-terminus-command.php

示例2: testIsTest

 public function testIsTest()
 {
     $this->assertTrue(Terminus::isTest());
 }
開發者ID:barkinet,項目名稱:cli,代碼行數:4,代碼來源:test-terminus.php

示例3: launchSelf

 /**
  * Launch another Terminus command using the runtime arguments for the
  * current process
  *
  * @param string $command       Command to call
  * @param array  $args          Positional arguments to use
  * @param array  $assoc_args    Associative arguments to use
  * @param bool   $exit_on_error True to exit if the command returns error
  * @return int   The command exit status
  */
 public static function launchSelf($command, $args = array(), $assoc_args = array(), $exit_on_error = true)
 {
     $reused_runtime_args = array('path', 'url', 'user', 'allow-root');
     foreach ($reused_runtime_args as $key) {
         if (array_key_exists($key, self::getRunner()->config)) {
             $assoc_args[$key] = self::getRunner()->config[$key];
         }
     }
     if (Terminus::isTest()) {
         $script_path = __DIR__ . '/boot-fs.php';
     } else {
         $script_path = $GLOBALS['argv'][0];
     }
     $php_bin = '"' . self::getPhpBinary() . '"';
     $script_path = '"' . $script_path . '"';
     $escaped_args = array_map('escapeshellarg', $args);
     $args = implode(' ', $escaped_args);
     $assoc_args = Utils\assocArgsToStr($assoc_args);
     $full_command = "{$php_bin} {$script_path} {$command} {$args} {$assoc_args}";
     $status = self::launch($full_command, $exit_on_error);
     return $status;
 }
開發者ID:RazzYoshi,項目名稱:cli,代碼行數:32,代碼來源:Terminus.php


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