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


PHP ConfigHelper::merge方法代码示例

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


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

示例1: defined

<?php

defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
require __DIR__ . '/../vendor/yiisoft/yii/framework/yii.php';
require __DIR__ . '/../vendor/crisu83/yii-consoletools/helpers/ConfigHelper.php';
$config = ConfigHelper::merge(array(__DIR__ . '/config/main.php', __DIR__ . '/config/console.php', __DIR__ . '/config/main-environment.php', __DIR__ . '/config/console-local.php'));
$app = Yii::createConsoleApplication($config);
$app->commandRunner->addCommands(YII_PATH . '/cli/commands');
$app->run();
开发者ID:crisu83,项目名称:yii-app,代码行数:10,代码来源:yiic.php

示例2: ini_set

<?php

ini_set('display_errors', 1);
$root = dirname(__DIR__);
$yii = $root . '/vendor/yiisoft/yii/framework/yiilite.php';
$global = $root . '/app/helpers/global.php';
$builder = $root . '/vendor/crisu83/yii-consoletools/helpers/ConfigHelper.php';
require_once $yii;
require_once $global;
require_once $builder;
$config = ConfigHelper::merge(array($root . '/app/config/main.php', $root . '/app/config/web.php', $root . '/app/config/local.php'));
Yii::createWebApplication($config)->run();
开发者ID:crisu83,项目名称:yiistrap-docs,代码行数:12,代码来源:index.php

示例3: defined

<?php

defined('YII_DEBUG') or define('YII_DEBUG', true);
require __DIR__ . '/../vendor/yiisoft/yii/framework/yii.php';
require __DIR__ . '/../app/components/WebApplication.php';
require __DIR__ . '/../app/helpers/global.php';
require __DIR__ . '/../vendor/crisu83/yii-consoletools/helpers/ConfigHelper.php';
$config = ConfigHelper::merge(array(__DIR__ . '/../app/config/main.php', __DIR__ . '/../app/config/web.php', __DIR__ . '/../app/config/main-environment.php', __DIR__ . '/../app/config/main-local.php'));
$app = Yii::createApplication('WebApplication', $config);
$app->run();
开发者ID:crisu83,项目名称:yii-app,代码行数:10,代码来源:index.php

示例4: defined

<?php

/**
 * This is the bootstrap file for test application.
 * This file should be removed when the application is deployed for production.
 */
defined('YII_DEBUG') or define('YII_DEBUG', true);
require __DIR__ . '/../vendor/yiisoft/yii/framework/yii.php';
require __DIR__ . '/../app/components/WebApplication.php';
require __DIR__ . '/../app/helpers/global.php';
require __DIR__ . '/../vendor/crisu83/yii-consoletools/helpers/ConfigHelper.php';
$config = ConfigHelper::merge(array(__DIR__ . '/../app/config/main.php', __DIR__ . '/../app/config/web.php', __DIR__ . '/../app/config/test.php'));
$app = Yii::createApplication('WebApplication', $config);
$app->run();
开发者ID:crisu83,项目名称:yii-app,代码行数:14,代码来源:test.php


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