选择语言 :

 Module_Storage_Driver_Swift::get_connection_hash

获取连接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
File: ./modules/storage/driver/swift.class.php
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;
    }
}