Horde_Memcache::_key PHP 메소드

_key() 보호된 메소드

Obtains the md5 sum for a key.
protected _key ( string $key ) : string
$key string The key.
리턴 string The corresponding memcache key.
    protected function _key($key)
    {
        return $this->_memcache instanceof Memcached ? $key : hash('md5', $this->_params['prefix'] . $key);
    }