当前位置: 首页>>代码示例>>PHP>>正文


PHP W3_Config::instance方法代码示例

本文整理汇总了PHP中W3_Config::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP W3_Config::instance方法的具体用法?PHP W3_Config::instance怎么用?PHP W3_Config::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在W3_Config的用法示例。


在下文中一共展示了W3_Config::instance方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * PHP5-style constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $config =& W3_Config::instance();
     $this->_debug = $config->get_boolean('varnish.debug');
     $this->_servers = $config->get_array('varnish.servers');
     $this->_timeout = $config->get_integer('timelimit.varnish_purge');
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:11,代码来源:Varnish.php

示例2: __construct

 /**
  * PHP5 Constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $this->_config =& W3_Config::instance();
     $this->_debug = $this->_config->get_boolean('pgcache.debug');
     $this->_lifetime = $this->_config->get_integer('pgcache.lifetime');
     $this->_enhanced_mode = $this->_config->get_string('pgcache.engine') == 'file_pgcache';
 }
开发者ID:kennethreitz-archive,项目名称:wordpress-skeleton,代码行数:11,代码来源:PgCache.php

示例3: __construct

 /**
  * PHP5 constructor
  *
  * @param string $dbuser
  * @param string $dbpassword
  * @param string $dbname
  * @param string $dbhost
  */
 function __construct($dbuser, $dbpassword, $dbname, $dbhost)
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $this->_config =& W3_Config::instance();
     $this->_lifetime = $this->_config->get_integer('dbcache.lifetime');
     if ($this->_can_ob()) {
         ob_start(array(&$this, 'ob_callback'));
     }
     parent::__construct($dbuser, $dbpassword, $dbname, $dbhost);
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:18,代码来源:Db.php

示例4: __construct

 /**
  * PHP5-style constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $config =& W3_Config::instance();
     $this->groups = $config->get_array('mobile.rgroups');
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:9,代码来源:Mobile.php

示例5: w3_get_nginx_rules_path

/**
 * Returns nginx rules path
 *
 * @return string
 */
function w3_get_nginx_rules_path()
{
    require_once W3TC_LIB_W3_DIR . '/Config.php';
    $config =& W3_Config::instance();
    $path = $config->get_string('config.path');
    if (!$path) {
        $path = w3_get_document_root() . '/nginx.conf';
    }
    return $path;
}
开发者ID:niko-lgdcom,项目名称:archives,代码行数:15,代码来源:define.php

示例6: __construct

 /**
  * PHP5-style constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $config =& W3_Config::instance();
     $this->key = $config->get_string('widget.pagespeed.key');
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:9,代码来源:PageSpeed.php

示例7: __construct

 /**
  * PHP5 Constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $this->_config =& W3_Config::instance();
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:8,代码来源:Plugin.php

示例8: __construct

 /**
  * PHP5 Constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $this->_config =& W3_Config::instance();
     $this->_debug = $this->_config->get_boolean('pgcache.debug');
     $this->_request_uri = $_SERVER['REQUEST_URI'];
     $this->_lifetime = $this->_config->get_integer('browsercache.html.lifetime');
     $this->_enhanced_mode = $this->_config->get_string('pgcache.engine') == 'file_generic';
     if ($this->_config->get_boolean('mobile.enabled')) {
         require_once W3TC_LIB_W3_DIR . '/Mobile.php';
         $this->_mobile =& W3_Mobile::instance();
     }
     if ($this->_config->get_boolean('referrer.enabled')) {
         require_once W3TC_LIB_W3_DIR . '/Referrer.php';
         $this->_referrer =& W3_Referrer::instance();
     }
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:20,代码来源:PgCache.php

示例9: __construct

 /**
  * PHP5 style constructor
  */
 function __construct()
 {
     require_once W3TC_LIB_W3_DIR . '/Config.php';
     $this->_config =& W3_Config::instance();
     $this->_lifetime = $this->_config->get_integer('objectcache.lifetime');
     $this->_debug = $this->_config->get_boolean('objectcache.debug');
     $this->global_groups = $this->_config->get_array('objectcache.groups.global');
     $this->nonpersistent_groups = $this->_config->get_array('objectcache.groups.nonpersistent');
     $this->_caching = $this->_can_cache();
     $GLOBALS['_wp_using_ext_object_cache'] = $this->_caching;
     if ($this->_can_ob()) {
         ob_start(array(&$this, 'ob_callback'));
     }
 }
开发者ID:niko-lgdcom,项目名称:archives,代码行数:17,代码来源:ObjectCache.php


注:本文中的W3_Config::instance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。