glob:// — 查找与模式匹配的路径名
glob: 流包装器。
示例 #1 基本用法
<?php
// 遍历 ext/spl/examples/ 目录下的所有 *.php 文件
// 并打印文件名及其大小
$it = new DirectoryIterator("glob://ext/spl/examples/*.php");
foreach($it as $f) {
printf("%s: %.1FK\n", $f->getFilename(), $f->getSize()/1024);
}
?>
tree.php: 1.0K findregex.php: 0.6K findfile.php: 0.7K dba_dump.php: 0.9K nocvsdir.php: 1.1K phar_from_dir.php: 1.0K ini_groups.php: 0.9K directorytree.php: 0.9K dba_array.php: 1.1K class_tree.php: 1.8K