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


PHP AppConfig::getAppConfig方法代码示例

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


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

示例1: dirname

<?php

// rythm core file
require_once dirname(__FILE__) . '/../config/AppConfig.class.php';
$domain = explode('.', $_SERVER['HTTP_HOST']);
$reversed_domain = array_reverse($domain);
$allow_apps = array('backend', 'rblog');
if (isset($reversed_domain[2])) {
    $app = $reversed_domain[2];
    // subdomain
}
if (!in_array($app, $allow_apps)) {
    $app = 'rblog';
}
$config = AppConfig::getAppConfig($app, 'dev');
rtDispatcher::dispatch($config);
开发者ID:reeze,项目名称:rblog,代码行数:16,代码来源:index.php

示例2: array

<?php

require_once 'config/AppConfig.class.php';
AppConfig::getAppConfig('rblog', 'dev');
Rythm::init();
// Include your Doctrine configuration/setup here, your connections, models, etc.
// Configure Doctrine Cli
// Normally these are arguments to the cli tasks but if they are set here the arguments will be auto-filled and are not required for you to enter them.
$config = array('data_fixtures_path' => '/path/to/data/fixtures', 'models_path' => rtConfig::get('rt_project_dir') . DS . 'lib' . DS . 'models', 'migrations_path' => ROOT_DIR . DS . 'data' . DS . 'migrations', 'sql_path' => rtConfig::get('rt_data_dir') . DS . 'sql', 'yaml_schema_path' => rtConfig::get('rt_config_dir') . DS . 'schema.yml');
$cli = new Doctrine_Cli($config);
$cli->run($_SERVER['argv']);
开发者ID:reeze,项目名称:rblog,代码行数:11,代码来源:doctrine.php


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