这篇文章主要介绍的内容是关于PHP glob() 函数,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
PHP Filesystem 函数
glob() 函数返回匹配指定模式的文件名或目录。
该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。
glob(pattern,flags)
参数 | 描述 |
---|---|
pattern | 必需。规定检索模式。 |
flags |
可选。规定特殊的设定。
注释:GLOB_ERR 是 PHP 5.1 添加的。 |
<?php print_r(glob("*.txt")); ?>
输出类似:
Array ( [0] => target.txt [1] => source.txt [2] => test.txt [3] => test2.txt )
<?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 glob() 函数的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号