Neos\Cache\Backend\ApcBackend::key PHP Méthode

key() public méthode

Returns the identifier of the current cache entry pointed to by the cache entry iterator.
public key ( ) : string
Résultat string
    public function key()
    {
        if ($this->cacheEntriesIterator === null) {
            $this->rewind();
        }
        return substr($this->cacheEntriesIterator->key(), strlen($this->identifierPrefix . 'entry_'));
    }