glob://

glob://查找与模式匹配的路径名

描述

glob: 流包装器。

用法

  • glob://

选项

包装器摘要
属性 支持
allow_url_fopen 限制
allow_url_include 限制
允许读取
允许写入
允许追加
允许同时读写
支持 stat()
支持 unlink()
支持 rename()
支持 mkdir()
支持 rmdir()

示例

示例 #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
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top