获取连接HASH
string Module_Storage_Driver_Swift::get_connection_hash( [ string $is_token_host = bool false ] )
参数列表
参数 类型 描述 默认值 $is_token_host
string
$is_token_host bool false
string
protected function get_connection_hash($is_token_host=false)
{
if ($is_token_host)
{
return $this->host .':'. $this->port;
}
else
{
return $this->storage_host .':'. $this->storage_port;
}
}