The GlobIterator class

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

Introduction

Iterates through a file system in a similar fashion to glob() .

Class synopsis

class GlobIterator extends FilesystemIterator implements Countable {
/* Inherited constants */
/* Methods */
public __construct (string $pattern, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO)
public count (): int
/* Inherited methods */
public DirectoryIterator::seek (int $offset): void
public SplFileInfo::getBasename (string $suffix = ""): string
public SplFileInfo::openFile (string $mode = "r", bool $useIncludePath = false , ? resource $context = null ): SplFileObject
public SplFileInfo::setFileClass (string $class = SplFileObject::class): void
public SplFileInfo::setInfoClass (string $class = SplFileInfo::class): void
}

Table of Contents

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 2 notes

up
2
info at ensostudio dot ru
5 years ago
Fix problem with braces in template:
<?php
class GlobStreamWrapper
{
private
$generator;

protected function
createGenerator(array $paths): Generator
{
return yield from
$paths;
}

public function
dir_opendir(string $pattern, int $options = 0): bool
{
$pattern = substr($pattern, 7); // crop 'glob://' prefix
$pattern = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $pattern);
$paths = (array) glob($pattern, GLOB_BRACE | GLOB_NOSORT);
$this->generator = $this->createGenerator($paths);
return
$this->generator->valid();
}

public function
dir_readdir(): string
{
$path = $this->generator->current() ?: '';
$this->generator->next();
return
$path;
}

public function
dir_rewinddir(): bool
{
$this->generator->rewind();
return
$this->generator->valid();
}

public function
dir_closedir(): bool
{
$this->generator = null;
return
true;
}
}
?>
Replace glob wrapper:
<?php
stream_wrapper_unregister
('glob');
stream_wrapper_register('glob', 'GlobStreamWrapper');
?>
Example:
<?php
$iterator
= new GlobIterator(__DIR__ . '/{application,system}/src/*.php');
while (
$iterator->valid()) {
echo
$iterator->current()->getFilename() . '</br>';
$iterator->next();
}
?>
up
1
info at ensostudio dot ru
4 years ago
NOTE: "similar fashion to glob()" GlobIterator use stream wrapper "glob://" = use glob()
+add a note

AltStyle によって変換されたページ (->オリジナル) /