org\bovigo\vfs\vfsStreamContainerIterator::key PHP Метод

key() публичный Метод

returns the name of the current child
public key ( ) : string
Результат string
    public function key()
    {
        $child = current($this->children);
        if (false === $child) {
            return null;
        }
        return $child->getName();
    }