本文整理汇总了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];
}