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


PHP Config::setFallback方法代碼示例

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


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

示例1: testGet

 public function testGet()
 {
     $config = new Config();
     $this->assertFalse($config->has('setting'));
     $this->assertNull($config->get('setting'));
     $config->set('setting', 'value');
     $this->assertEquals('value', $config->get('setting'));
     $fallback = new Config(['fallback_setting' => 'fallback_value']);
     $config->setFallback($fallback);
     $this->assertEquals('fallback_value', $config->get('fallback_setting'));
 }
開發者ID:mechiko,項目名稱:staff-october,代碼行數:11,代碼來源:ConfigTests.php

示例2: handle

 /**
  * Handle.
  *
  * @param string $path
  * @param string $localFilePath
  * @param array  $config
  * @return bool
  */
 public function handle($path, $localFilePath, array $config = [])
 {
     if (!method_exists($this->filesystem, 'getAdapter')) {
         return false;
     }
     if (!method_exists($this->filesystem->getAdapter(), 'putFile')) {
         return false;
     }
     $config = new Config($config);
     if (method_exists($this->filesystem, 'getConfig')) {
         $config->setFallback($this->filesystem->getConfig());
     }
     return (bool) $this->filesystem->getAdapter()->putFile($path, $localFilePath, $config);
 }
開發者ID:apollopy,項目名稱:flysystem-aliyun-oss,代碼行數:22,代碼來源:PutFile.php

示例3: __construct

 /**
  * PdoAdapter constructor.
  * @param \PDO $db
  * @param Config $config
  */
 public function __construct(\PDO $db, Config $config = null)
 {
     $this->db = $db;
     if ($config === null) {
         $config = new Config();
     }
     $defaultPrefix = 'flysystem';
     $config->setFallback(new Config(['table_prefix' => $defaultPrefix, 'enable_compression' => true, 'chunk_size' => 1048576, 'temp_dir' => sys_get_temp_dir(), 'disable_mysql_buffering' => true]));
     $this->config = $config;
     $tablePrefix = trim($this->config->get('table_prefix'));
     if ($tablePrefix == '') {
         $tablePrefix = $defaultPrefix;
     }
     $this->pathTable = "{$tablePrefix}_path";
     $this->chunkTable = "{$tablePrefix}_chunk";
     if ($config->get('disable_mysql_buffering')) {
         $this->db->setAttribute(\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, false);
     }
 }
開發者ID:phlib,項目名稱:flysystem-pdo,代碼行數:24,代碼來源:PdoAdapter.php

示例4: prepareConfig

 /**
  * Convert a config array to a Config object with the correct fallback.
  *
  * @param array $config
  *
  * @return Config
  */
 protected function prepareConfig(array $config)
 {
     $config = new Config($config);
     $config->setFallback($this->config);
     return $config;
 }
開發者ID:RyanThompson,項目名稱:flysystem,代碼行數:13,代碼來源:Filesystem.php

示例5: defaultConfig

 protected function defaultConfig()
 {
     $config = new Config();
     $config->setFallback($this->filesystem->getConfig());
     return $config;
 }
開發者ID:twistor,項目名稱:flysystem-stream-wrapper,代碼行數:6,代碼來源:AbstractPlugin.php


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