Horde_HashTable_Base::hkey PHP Method

hkey() public method

Add local prefix to beginning of key.
public hkey ( string $key ) : string
$key string Key name.
return string Hash table key identifier.
    public function hkey($key)
    {
        return $this->_params['prefix'] . $key;
    }