略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: GlobIterator

2024-04-27

GlobIterator 类

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

简介

遍历一个文件系统行为类似于 glob()

类摘要

class GlobIterator extends FilesystemIterator implements Countable {
/* 继承的常量 */
/* 方法 */
public __construct(string $pattern, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO)
public count(): int
/* 继承的方法 */
public FilesystemIterator::key(): string
public FilesystemIterator::setFlags(int $flags): void
public DirectoryIterator::getBasename(string $suffix = ""): string
public DirectoryIterator::seek(int $offset): void
public SplFileInfo::getATime(): int|false
public SplFileInfo::getBasename(string $suffix = ""): string
public SplFileInfo::getCTime(): int
public SplFileInfo::getExtension(): string
public SplFileInfo::getFileInfo(?string $class = null): SplFileInfo
public SplFileInfo::getFilename(): string
public SplFileInfo::getGroup(): int|false
public SplFileInfo::getInode(): int|false
public SplFileInfo::getLinkTarget(): string|false
public SplFileInfo::getMTime(): int|false
public SplFileInfo::getOwner(): int|false
public SplFileInfo::getPath(): string
public SplFileInfo::getPathInfo(?string $class = null): ?SplFileInfo
public SplFileInfo::getPathname(): string
public SplFileInfo::getPerms(): int|false
public SplFileInfo::getRealPath(): string|false
public SplFileInfo::getSize(): int|false
public SplFileInfo::getType(): string|false
public SplFileInfo::isDir(): bool
public SplFileInfo::isFile(): bool
public SplFileInfo::isLink(): bool
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
public SplFileInfo::__toString(): string
}

目录

add a noteadd a note

User Contributed Notes 2 notes

up
2
info at ensostudio dot ru
1 year ago
NOTE: "similar fashion to glob()" GlobIterator use  stream wrapper "glob://" = use glob()
up
1
info at ensostudio dot ru
1 year 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();
}
?>

官方地址:https://www.php.net/manual/en/class.globiterator.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3