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


PHP Zend_Config_Xml::merge方法代碼示例

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


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

示例1: load

 /**
  * Склеивает все файлы в единый конфиг, попутно задействуя кеш
  *
  * @param string $path Путь к папке с файлами
  * @param string $env APPLICATION_ENV
  * @return array
  */
 public static function load($path, $env)
 {
     $masterfiles = array();
     if (file_exists($path . 'application.xml')) {
         $handler = opendir($path);
         while (($file = readdir($handler)) !== false) {
             if (strtolower(pathinfo($file, PATHINFO_EXTENSION)) == 'xml') {
                 $masterfiles[] = $path . $file;
             }
         }
         sort($masterfiles);
         closedir($handler);
         $cache = self::getCache($masterfiles);
         $cacheid = md5($path);
         if ($cache->test($cacheid)) {
             return $cache->load($cacheid);
         } else {
             $config = new Zend_Config_Xml($path . 'application.xml', $env, array('allowModifications' => true));
             foreach ($masterfiles as $file) {
                 if ($file != 'application.xml') {
                     $config->merge(new Zend_Config_Xml($file, $env));
                 }
             }
             $config = $config->toArray();
             $cache->save($config, $cacheid);
             return $config;
         }
     }
     return false;
 }
開發者ID:ei-grad,項目名稱:phorm,代碼行數:37,代碼來源:Config.php

示例2: _loadConfig

 private function _loadConfig()
 {
     $coreConfig = new Zend_Config_Xml($this->dir . 'configs/core.xml', 'core', true);
     if ($coreConfig->mode == 'staging') {
         $config = new Zend_Config_Xml($this->dir . 'configs/core.xml', $coreConfig->mode, true);
         $config->merge($coreConfig);
     } else {
         /*	załadowanie konfigiracji z cache'a	*/
         if (!($config = $this->_cache->load('config'))) {
             $config = new Zend_Config_Xml($this->dir . 'configs/core.xml', $coreConfig->mode, true);
             $config->merge($coreConfig);
             $this->_cache->save($config, 'config', array('config'));
         }
     }
     $this->_config = $config;
     $this->_config->serviceDir = substr(__FILE__, 0, strpos(__FILE__, 'core' . DIRECTORY_SEPARATOR . 'Bootstrap.php'));
     Zend_Registry::set('config', $this->_config);
 }
開發者ID:adammajchrzak,項目名稱:silesiamaps,代碼行數:18,代碼來源:Bootstrap.php


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