请输入您要查询的百科知识:

 

词条 glob
释义

glob() 函数返回匹配指定模式的文件名或目录。 该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。

语法

int glob(const char *pattern, int flags,
int errfunc(const char *epath, int eerrno),
glob_t *pglob);

注释:GLOB_ERR 是 PHP 5.1 添加的。

参数 描述

file 必需。规定检索模式。

size 可选。规定特殊的设定。

GLOB_MARK - 在每个返回的项目中加一个斜线

GLOB_NOSORT - 按照文件在目录中出现的原始顺序返回(不排序)

GLOB_NOCHECK - 如果没有文件匹配则返回用于搜索的模式

GLOB_NOESCAPE - 反斜线不转义元字符

GLOB_BRACE - 扩充 {a,b,c} 来匹配 'a','b' 或 'c'

GLOB_ONLYDIR - 仅返回与模式匹配的目录项

GLOB_ERR - 停止并读取错误信息(比如说不可读的目录),默认的情况下忽略所有错误

例子 1

<?php
print_r(glob("*.txt"));
?>

输出类似:

Array ( [0] => target.txt [1] => source.txt [2] => test.txt [3] => test2.txt )

例子 2

<?php
print_r(glob("*.*"));
?>

输出类似:

Array ( [0] => contacts.csv [1] => default.php [2] => target.txt [3] => source.txt [4] => tem1.tmp [5] => test.htm [6] => test.ini [7] => test.php [8] => test.txt [9] => test2.txt )

PHP Filesystem 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/2/12 15:10:48