PHP函数glob介绍
定义和用法
glob() 函数返回匹配指定模式的文件名或目录。
该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。
语法
glob(pattern,flags)
例子
例子 1
<?phpprint_r(glob("*.txt"));?>
输出类似:
Array([0] => target.txt[1] => source.txt[2] => test.txt[3] => test2.txt)
例子 2
<?phpprint_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)
本文出自:琅枫个人博客。如需转载请注明出处!
本文出处:"https://www.langfujun.top/function/280.html"
如果您觉得文章对你有帮助,可以进行打赏。
打赏多少,您高兴就行,谢谢您对琅枫博客的支持! ~(@^_^@)~
微信打赏

支付宝打赏
