glob://

Оновлено: 09.05.2023

glob:// - Знайти імена шляхів, що відповідають шаблону

Глобус: обгортка потоку.

glob://

Wrapper Summary Attribute Supported Restricted by allow_url_fopen No Restricted by allow_url_include No Allows Reading No Allows Writing No Allows Appending No Allows Simultaneous Reading and Writing No Supports stat() No Supports unlink() No Supports rename() No Supports mkdir() No Supports rmdir() No

Приклад #1 Базове використання

<?php
// Loop over all *.php files in ext/spl/examples/ directory
// and print the filename and its size
$it = new DirectoryIterator("glob://ext/spl/examples/*.php");
foreach($it as $f) {
    printf("%s: %.1FK\n", $f->getFilename(), $f->getSize()/1024);
}
?>