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


PHP Console::detectBestAdapter方法代碼示例

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


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

示例1: createService

 /**
  * Create and return a Console adapter instance.
  * In case we're not in a Console environment, return a dummy stdClass object.
  *
  * In order to disable adapter auto-detection and use a specific adapter (and charset),
  * add the following fields to application configuration, for example:
  *
  *     'console' => array(
  *         'adapter' => 'MyConsoleAdapter',     // always use this console adapter
  *         'charset' => 'MyConsoleCharset',     // always use this console charset
  *      ),
  *      'service_manager' => array(
  *          'invokables' => array(
  *              'MyConsoleAdapter' => 'Zend\Console\Adapter\Windows',
  *              'MyConsoleCharset' => 'Zend\Console\Charset\DESCG',
  *          )
  *      )
  *
  * @param  ServiceLocatorInterface $serviceLocator
  * @return AdapterInterface|stdClass
  */
 public function createService(ServiceLocatorInterface $serviceLocator)
 {
     // First, check if we're actually in a Console environment
     if (!Console::isConsole()) {
         // SM factory cannot currently return null, so we return dummy object
         return new stdClass();
     }
     // Read app config and determine Console adapter to use
     $config = $serviceLocator->get('Config');
     if (!empty($config['console']) && !empty($config['console']['adapter'])) {
         // use the adapter supplied in application config
         $adapter = $serviceLocator->get($config['console']['adapter']);
     } else {
         // try to detect best console adapter
         $adapter = Console::detectBestAdapter();
         $adapter = new $adapter();
     }
     // check if we have a valid console adapter
     if (!$adapter instanceof AdapterInterface) {
         // SM factory cannot currently return null, so we convert it to dummy object
         return new stdClass();
     }
     // Optionally, change Console charset
     if (!empty($config['console']) && !empty($config['console']['charset'])) {
         // use the charset supplied in application config
         $charset = $serviceLocator->get($config['console']['charset']);
         $adapter->setCharset($charset);
     }
     return $adapter;
 }
開發者ID:Nurik4249,項目名稱:torrentpier,代碼行數:51,代碼來源:ConsoleAdapterFactory.php

示例2: testCanTestIsConsole

 public function testCanTestIsConsole()
 {
     $this->assertTrue(Console::isConsole());
     $className = Console::detectBestAdapter();
     $adpater = new $className();
     $this->assertTrue($adpater instanceof Adapter\AdapterInterface);
     Console::overrideIsConsole(false);
     $this->assertFalse(Console::isConsole());
     $this->assertEquals(null, Console::detectBestAdapter());
 }
開發者ID:rajanlamic,項目名稱:IntTest,代碼行數:10,代碼來源:ConsoleTest.php

示例3: testCollectContributorsInfoFailed

 public function testCollectContributorsInfoFailed()
 {
     $adapter = Console::detectBestAdapter();
     $consoleAdapter = new $adapter();
     $controller = new ConsoleController($consoleAdapter, ['console' => ['contributors' => ['output' => 'foo.pson']]], $this->httpClient);
     $class = new ReflectionClass('Application\\Controller\\ConsoleController');
     $method = $class->getMethod('collectContributorsInfo');
     $method->setAccessible(true);
     $contributors = [0 => ['login' => '*samsonasik*']];
     $method->invokeArgs($controller, [$contributors, 3, 100]);
 }
開發者ID:sitrunlab,項目名稱:learnzf2,代碼行數:11,代碼來源:ConsoleControllerTest.php

示例4: testGetConsoleUsage

 public function testGetConsoleUsage()
 {
     $expected = ['get contributors' => 'get contributors list'];
     $consoleAdapter = Console::detectBestAdapter();
     $this->assertEquals($expected, $this->module->getConsoleUsage(new $consoleAdapter()));
 }
開發者ID:shitikovkirill,項目名稱:LearnZF2,代碼行數:6,代碼來源:ModuleTest.php


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