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


PHP ConnectionManager::current_index方法代码示例

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


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

示例1: getReadConnection

 /**
  * 返回一个数据库对象,该服务器为读数据准备
  *
  * @return MooMySQL
  */
 public function getReadConnection()
 {
     // 只有一个服务器,则读写为同一个服务器
     if ($this->total_read_count < 1) {
         return $this->getWriteConnection();
     }
     // 如果当前的连接没有关闭,则使用当前的连接
     if (!is_null(self::$read_conn_pool[self::$current_index])) {
         return self::$read_conn_pool[self::$current_index];
     }
     // 取下一个读的服务器
     ++self::$current_index;
     if (self::$current_index > $this->total_read_count - 1) {
         self::$current_index = 0;
     }
     // 如果所需的连接没有打开,则打开该连接
     if (!isset(self::$read_conn_pool[self::$current_index]) || is_null(self::$read_conn_pool[self::$current_index])) {
         self::$read_conn_pool[self::$current_index] = $this->createConnection($this->read_hosts[self::$current_index]);
     }
     return self::$read_conn_pool[self::$current_index];
 }
开发者ID:GameCrusherTechnology,项目名称:HeroTowerServer,代码行数:26,代码来源:ConnectionManager.class.php


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