org\bovigo\vfs\vfsStreamContainerIterator::key PHP Méthode

key() public méthode

returns the name of the current child
public key ( ) : string
Résultat string
    public function key()
    {
        $child = current($this->children);
        if (false === $child) {
            return null;
        }
        return $child->getName();
    }