Gdn_Cache::stripKey PHP Method

stripKey() public method

public stripKey ( $Key, $Options )
    public function stripKey($Key, $Options)
    {
        $UsePrefix = !val(Gdn_Cache::FEATURE_NOPREFIX, $Options, false);
        $ForcePrefix = val(Gdn_Cache::FEATURE_FORCEPREFIX, $Options, null);
        if ($UsePrefix) {
            $Key = substr($Key, strlen($this->getPrefix($ForcePrefix)) + 1);
        }
        return $Key;
    }