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


PHP Connection::getConfig方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     if (is_null($this->table)) {
         $database = Connection::getConfig($this->connection);
         $this->table = $database['prefix'] . Inflector::underscore(get_class($this));
     }
     $this->loadBehaviors($this->behaviors);
 }
开发者ID:klawdyo,项目名称:spaghettiphp,代码行数:8,代码来源:Model.php

示例2: __construct

 /**
  * 构造方法
  *
  * @param Connection $connection
  * @param string|null $databaseName 数据库名,默认使用连接中的数据库
  */
 public function __construct(Connection $connection, $databaseName = null)
 {
     $this->connection = $connection;
     $this->dbConfig = $connection->getConfig();
     if (!$databaseName) {
         $databaseName = $this->dbConfig['dbname'];
     }
     $this->explainSchema($databaseName);
 }
开发者ID:chaoyanjie,项目名称:MonkeyPHP,代码行数:15,代码来源:Schema.php

示例3: install_models

function install_models(Connection $connection, $package, $models)
{
    $factory = RelationFactory::getInstance();
    $factory->prepareRelations($package, $models);
    $models = $factory->getRelations($connection->getConfig()->getType());
    foreach ($models as $model) {
        if (!install_model($connection, $model)) {
            return false;
        }
    }
    return true;
}
开发者ID:exildev,项目名称:corvus,代码行数:12,代码来源:install.php

示例4: array

<?php

Connection::add(array('development' => array('driver' => 'MySql', 'host' => 'localhost', 'user' => 'root', 'password' => '', 'database' => 'spaghetti', 'prefix' => ''), 'production' => array('driver' => 'MySql', 'host' => 'localhost', 'user' => 'root', 'password' => '', 'database' => 'spaghetti', 'prefix' => ''), 'test' => array('driver' => 'MySql', 'host' => 'localhost', 'user' => 'root', 'password' => '', 'database' => 'spaghetti', 'prefix' => '')));
$env = Config::read('App.environment');
Connection::add('default', Connection::getConfig($env));
开发者ID:klawdyo,项目名称:spaghettiphp,代码行数:5,代码来源:connections.example.php

示例5: __construct

 public function __construct(Connection $connection)
 {
     $this->connection = $connection;
     $params = $connection->getConfig();
     parent::__construct($params);
 }
开发者ID:vigm,项目名称:advancedMD,代码行数:6,代码来源:Query.php


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